From 4b215ebb5a9e6a23e5b681776e4087bc0fecaf3a Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 15 Sep 2021 04:32:23 +0200 Subject: [PATCH] [MIRROR] Fix documentation in modules/mob/emote.dm (#8172) * Fix documentation in emote.dm (#61438) Changes documentation in emote.dm to go with dmdoc format * Fix documentation in modules/mob/emote.dm Co-authored-by: Mooshimi <85910816+Mooshimi@users.noreply.github.com> --- code/modules/mob/emote.dm | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index 5062b49ea8b..c709982585f 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -1,9 +1,15 @@ -#define BEYBLADE_PUKE_THRESHOLD 30 //How confused a carbon must be before they will vomit -#define BEYBLADE_PUKE_NUTRIENT_LOSS 60 //How must nutrition is lost when a carbon pukes -#define BEYBLADE_DIZZINESS_PROBABILITY 20 //How often a carbon becomes penalized -#define BEYBLADE_DIZZINESS_VALUE 10 //How long the screenshake lasts -#define BEYBLADE_CONFUSION_INCREMENT 10 //How much confusion a carbon gets when penalized -#define BEYBLADE_CONFUSION_LIMIT 40 //A max for how penalized a carbon will be for beyblading +///How confused a carbon must be before they will vomit +#define BEYBLADE_PUKE_THRESHOLD 30 +///How must nutrition is lost when a carbon pukes +#define BEYBLADE_PUKE_NUTRIENT_LOSS 60 +///How often a carbon becomes penalized +#define BEYBLADE_DIZZINESS_PROBABILITY 20 +///How long the screenshake lasts +#define BEYBLADE_DIZZINESS_VALUE 10 +///How much confusion a carbon gets when penalized +#define BEYBLADE_CONFUSION_INCREMENT 10 +///A max for how penalized a carbon will be for beyblading +#define BEYBLADE_CONFUSION_LIMIT 40 //The code execution of the emote datum is located at code/datums/emotes.dm /mob/proc/emote(act, m_type = null, message = null, intentional = FALSE, force_silence = FALSE) @@ -119,7 +125,6 @@ if(current_confusion < BEYBLADE_CONFUSION_LIMIT) user.add_confusion(BEYBLADE_CONFUSION_INCREMENT) - #undef BEYBLADE_PUKE_THRESHOLD #undef BEYBLADE_PUKE_NUTRIENT_LOSS #undef BEYBLADE_DIZZINESS_PROBABILITY