mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-30 07:27:57 +01:00
Updates Intents
This commit is contained in:
@@ -324,25 +324,25 @@ var/static/regex/multispin_words = regex("like a record baby")
|
||||
//HELP INTENT
|
||||
else if((findtext(message, helpintent_words)))
|
||||
for(var/mob/living/carbon/human/H in listeners)
|
||||
H.a_intent_change(I_HELP)
|
||||
H.a_intent_change(INTENT_HELP)
|
||||
next_command = world.time + cooldown_meme
|
||||
|
||||
//DISARM INTENT
|
||||
else if((findtext(message, disarmintent_words)))
|
||||
for(var/mob/living/carbon/human/H in listeners)
|
||||
H.a_intent_change(I_DISARM)
|
||||
H.a_intent_change(INTENT_DISARM)
|
||||
next_command = world.time + cooldown_meme
|
||||
|
||||
//GRAB INTENT
|
||||
else if((findtext(message, grabintent_words)))
|
||||
for(var/mob/living/carbon/human/H in listeners)
|
||||
H.a_intent_change(I_GRAB)
|
||||
H.a_intent_change(INTENT_GRAB)
|
||||
next_command = world.time + cooldown_meme
|
||||
|
||||
//HARM INTENT
|
||||
else if((findtext(message, harmintent_words)))
|
||||
for(var/mob/living/carbon/human/H in listeners)
|
||||
H.a_intent_change(I_HARM)
|
||||
H.a_intent_change(INTENT_HARM)
|
||||
next_command = world.time + cooldown_meme
|
||||
|
||||
//THROW/CATCH
|
||||
|
||||
Reference in New Issue
Block a user