splits verb and proc (#17040)

This commit is contained in:
Kashargul
2025-02-02 16:15:17 -05:00
committed by GitHub
parent db636e3306
commit dcb65341a7
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -716,10 +716,13 @@
return
/mob/living/verb/Examine_OOC(mob/user = usr)
/mob/living/verb/Examine_OOC()
set name = "Examine Meta-Info (OOC)"
set category = "OOC.Game"
set src in view()
do_examine_ooc(usr)
/mob/living/proc/do_examine_ooc(mob/user)
//VOREStation Edit Start - Making it so SSD people have prefs with fallback to original style.
if(CONFIG_GET(flag/allow_metadata))
if(ooc_notes)
@@ -1,6 +1,6 @@
/mob/living/silicon/Topic(href, href_list) //For Robots and pAI's. And possibly AI's too.
if(href_list["ooc_notes"])
Examine_OOC(usr)
do_examine_ooc(usr)
return 1
return ..()