Fixes a merge conflict that broke stat panel (#96071)

## About The Pull Request

Fixes a merge conflict between 2 of my stat panel PRs that caused the
'Toggle Stat Panel' button to not work.
Also converts more skin stuff to defines that I missed in the last PR.

## Why It's Good For The Game

Button works wahoo!

## Changelog

🆑
fix: Stat panel's "Toggle Stat Panel" button now works.
/🆑
This commit is contained in:
John Willard
2026-05-15 01:35:12 -04:00
committed by GitHub
parent 007428a089
commit e698a66f5e
5 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ VERB_MANAGER_SUBSYSTEM_DEF(input)
/datum/controller/subsystem/verb_manager/input/can_queue_verb(datum/callback/verb_callback/incoming_callback, control)
//make sure the incoming verb is actually something we specifically want to handle
if(control != "mapwindow.map")
if(control != SKIN_MAPWINDOW_MAP)
return FALSE
if(average_click_delay > MAXIMUM_CLICK_LATENCY || !..())