mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Merge pull request #4262 from Atermonera/AI_verbs
AI verbs are no longer hidden
This commit is contained in:
@@ -17,10 +17,6 @@ var/list/ai_verbs_default = list(
|
||||
/mob/living/silicon/ai/proc/show_laws_verb,
|
||||
/mob/living/silicon/ai/proc/toggle_acceleration,
|
||||
/mob/living/silicon/ai/proc/toggle_hologram_movement,
|
||||
/mob/living/silicon/ai/proc/toggle_hidden_verbs,
|
||||
)
|
||||
|
||||
var/list/ai_verbs_hidden = list( // For why this exists, refer to https://xkcd.com/1172/,
|
||||
/mob/living/silicon/ai/proc/ai_announcement,
|
||||
/mob/living/silicon/ai/proc/ai_call_shuttle,
|
||||
/mob/living/silicon/ai/proc/ai_camera_track,
|
||||
@@ -795,16 +791,5 @@ var/list/ai_verbs_hidden = list( // For why this exists, refer to https://xkcd.c
|
||||
if(rig)
|
||||
rig.force_rest(src)
|
||||
|
||||
/mob/living/silicon/ai/proc/toggle_hidden_verbs()
|
||||
set name = "Toggle Hidden Verbs"
|
||||
set category = "AI Settings"
|
||||
|
||||
if(/mob/living/silicon/ai/proc/ai_announcement in verbs)
|
||||
src << "Extra verbs toggled off."
|
||||
verbs -= ai_verbs_hidden
|
||||
else
|
||||
src << "Extra verbs toggled on."
|
||||
verbs |= ai_verbs_hidden
|
||||
|
||||
#undef AI_CHECK_WIRELESS
|
||||
#undef AI_CHECK_RADIO
|
||||
|
||||
Reference in New Issue
Block a user