[MIRROR] Fixes inability to declare war as nukies [MDB IGNORE] (#18360)

* Fixes inability to declare war as nukies

* Update admin_verbs.dm

Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com>
Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-12-31 19:57:08 +01:00
committed by GitHub
parent 0a29fd423c
commit 562aa6fe3a
6 changed files with 22 additions and 9 deletions
+4
View File
@@ -1017,6 +1017,10 @@ GLOBAL_PROTECT(admin_verbs_poll)
if(!check_rights(R_ADMIN))
return
if(SSticker.current_state != GAME_STATE_PLAYING)
to_chat(usr, span_warning("The game hasnt started yet!"))
return
var/list/choices = LAZY_TEMPLATE_KEY_LIST_ALL()
var/choice = tgui_input_list(usr, "Key?", "Lazy Loader", choices)
if(!choice)