fixed sending of cheat keys online

This commit is contained in:
Zeno Rogue 2018-02-12 16:20:47 +01:00
parent 01209bbd12
commit 6cf800859e
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ purehookset hooks_fixticks;
void handleKeyNormal(int sym, int uni) {
if(cheater) {
if(cheater && sym < 256 && sym > 0) {
if(applyCheat(uni, mouseover))
sym = 0;
}