mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +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/show_laws_verb,
|
||||||
/mob/living/silicon/ai/proc/toggle_acceleration,
|
/mob/living/silicon/ai/proc/toggle_acceleration,
|
||||||
/mob/living/silicon/ai/proc/toggle_hologram_movement,
|
/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_announcement,
|
||||||
/mob/living/silicon/ai/proc/ai_call_shuttle,
|
/mob/living/silicon/ai/proc/ai_call_shuttle,
|
||||||
/mob/living/silicon/ai/proc/ai_camera_track,
|
/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)
|
if(rig)
|
||||||
rig.force_rest(src)
|
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_WIRELESS
|
||||||
#undef AI_CHECK_RADIO
|
#undef AI_CHECK_RADIO
|
||||||
|
|||||||
4
html/changelogs/Atermonera-AI_verbs.yml
Normal file
4
html/changelogs/Atermonera-AI_verbs.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
author: Atermonera
|
||||||
|
delete-after: True
|
||||||
|
changes:
|
||||||
|
- bugfix: "AI verbs are no longer hidden on the tabs."
|
||||||
Reference in New Issue
Block a user