[MIRROR] tgui 516 (#10158)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-02-14 06:35:23 -07:00
committed by GitHub
parent 021ac2b32d
commit bb759b294c
422 changed files with 1193 additions and 1595 deletions

View File

@@ -25,7 +25,7 @@ var/global/list/MOVE_KEY_MAPPINGS = list(
// Validate input. Must be one (and only one) of the key codes)
if(isnull(movekey) || (movekey & ~0xFFF) || (movekey & (movekey - 1)))
log_debug("Client [ckey] sent an illegal movement key down: [movekeyName] ([movekey])")
// og_debug("Client [ckey] sent an illegal movement key down: [movekeyName] ([movekey])") // We forward tgui keys nowadays
return
// Record that we are now holding the key!
@@ -57,7 +57,7 @@ var/global/list/MOVE_KEY_MAPPINGS = list(
// Validate input. Must be one (and only one) of the key codes)
if(isnull(movekey) || (movekey & ~0xFFF) || (movekey & (movekey - 1)))
log_debug("Client [ckey] sent an illegal movement key up: [movekeyName] ([movekey])")
// log_debug("Client [ckey] sent an illegal movement key up: [movekeyName] ([movekey])") // We forward tgui keys nowadays
return
// Clear bit indicating we were holding the key