mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 06:00:23 +01:00
splits verb and proc (#17040)
This commit is contained in:
@@ -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 ..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user