Removes unneeded verb settings (#24152)

This commit is contained in:
GDN
2024-02-19 11:42:11 +00:00
committed by GitHub
parent 0ee8a53eec
commit d72d0aebb7
9 changed files with 0 additions and 21 deletions
-1
View File
@@ -715,7 +715,6 @@
/mob/verb/check_languages()
set name = "Check Known Languages"
set category = "IC"
set src = usr
var/datum/browser/popup = new(src, "checklanguage", "Known Languages", 420, 470)
popup.set_content(check_lang_data())
@@ -1286,7 +1286,6 @@ GLOBAL_LIST_INIT(robot_verbs_default, list(
/mob/living/silicon/robot/mode()
set name = "Activate Held Object"
set category = "IC"
set src = usr
var/obj/item/W = get_active_hand()
if(W)
@@ -286,7 +286,6 @@
/mob/living/simple_animal/bot/secbot/verb/toggle_flashing_lights()
set name = "Toggle Flashing Lights"
set category = "Object"
set src = usr
flashing_lights = !flashing_lights
-2
View File
@@ -687,7 +687,6 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list( \
/mob/verb/mode()
set name = "Activate Held Object"
set category = null
set src = usr
DEFAULT_QUEUE_OR_CALL_VERB(VERB_CALLBACK(src, PROC_REF(run_mode)))
@@ -758,7 +757,6 @@ GLOBAL_LIST_INIT(slot_equipment_priority, list( \
memory()
/mob/proc/update_flavor_text()
set src in usr
if(usr != src)
to_chat(usr, "<span class='notice'>You can't change the flavor text of this mob</span>")
return
@@ -25,8 +25,6 @@
return ..()
/mob/new_player/verb/new_player_panel()
set src = usr
if(client.tos_consent || GLOB.configuration.system.external_tos_handler)
new_player_panel_proc()
else