mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-21 21:17:44 +01:00
Throws a bunch of parenthesis around to ensure dear Aunt Sally is always properly excused. (#71281)
Similar vein to #37116 This is supposed to be standard, yet here we are. SHOULDN'T change anything, but there's likely something out there that's bound to behave different because of it. These were done manually, regex to find things that MIGHT need to be corrected; `^#define.+\+((?!\)).)*$` `^#define.+-((?!\)).)*$` `^#define.+\*((?!\)).)*$` `^#define.+\/((?!\)).)*$` (yeah that's a lot of stuff.) `^#define.+%((?!\)).)*$` `^#define.+SECONDS((?!\)).)*$` `^#define.+MINUTES((?!\)).)*$`
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
/// How long the chat message's spawn-in animation will occur for
|
||||
#define CHAT_MESSAGE_SPAWN_TIME 0.2 SECONDS
|
||||
#define CHAT_MESSAGE_SPAWN_TIME (0.2 SECONDS)
|
||||
/// How long the chat message will exist prior to any exponential decay
|
||||
#define CHAT_MESSAGE_LIFESPAN 5 SECONDS
|
||||
#define CHAT_MESSAGE_LIFESPAN (5 SECONDS)
|
||||
/// How long the chat message's end of life fading animation will occur for
|
||||
#define CHAT_MESSAGE_EOL_FADE 0.7 SECONDS
|
||||
#define CHAT_MESSAGE_EOL_FADE (0.7 SECONDS)
|
||||
/// Factor of how much the message index (number of messages) will account to exponential decay
|
||||
#define CHAT_MESSAGE_EXP_DECAY 0.7
|
||||
/// Factor of how much height will account to exponential decay
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
//"Don't leave food on the floor, that's how we get ants"
|
||||
|
||||
#define DECOMPOSITION_TIME 10 MINUTES
|
||||
#define DECOMPOSITION_TIME_RAW 5 MINUTES
|
||||
#define DECOMPOSITION_TIME_GROSS 7 MINUTES
|
||||
#define DECOMPOSITION_TIME (10 MINUTES)
|
||||
#define DECOMPOSITION_TIME_RAW (5 MINUTES)
|
||||
#define DECOMPOSITION_TIME_GROSS (7 MINUTES)
|
||||
|
||||
/datum/component/decomposition
|
||||
dupe_mode = COMPONENT_DUPE_UNIQUE
|
||||
|
||||
@@ -297,7 +297,7 @@ Behavior that's still missing from this component that original food items had t
|
||||
return TRUE
|
||||
|
||||
/// Normal time to forcefeed someone something
|
||||
#define EAT_TIME_FORCE_FEED 3 SECONDS
|
||||
#define EAT_TIME_FORCE_FEED (3 SECONDS)
|
||||
/// Multiplier for eat time if the eater has TRAIT_VORACIOUS
|
||||
#define EAT_TIME_VORACIOUS_MULT 0.65 // voracious folk eat 35% faster
|
||||
/// Multiplier for how much longer it takes a voracious folk to eat while full
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/// How many tiles around the target the shooter can roam without losing their shot
|
||||
#define GUNPOINT_SHOOTER_STRAY_RANGE 2
|
||||
/// How long it takes from the gunpoint is initiated to reach stage 2
|
||||
#define GUNPOINT_DELAY_STAGE_2 2.5 SECONDS
|
||||
#define GUNPOINT_DELAY_STAGE_2 (2.5 SECONDS)
|
||||
/// How long it takes from stage 2 starting to move up to stage 3
|
||||
#define GUNPOINT_DELAY_STAGE_3 7.5 SECONDS
|
||||
#define GUNPOINT_DELAY_STAGE_3 (7.5 SECONDS)
|
||||
/// If the projectile doesn't have a wound_bonus of CANT_WOUND, we add (this * the stage mult) to their wound_bonus and bare_wound_bonus upon triggering
|
||||
#define GUNPOINT_BASE_WOUND_BONUS 5
|
||||
/// How much the damage and wound bonus mod is multiplied when you're on stage 1
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#define SHY_COMPONENT_CACHE_TIME 0.5 SECONDS
|
||||
#define SHY_COMPONENT_CACHE_TIME (0.5 SECONDS)
|
||||
|
||||
/// You can't use items on anyone other than yourself if there are other living mobs around you
|
||||
/datum/component/shy
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#define PARTY_COOLDOWN_LENGTH_MIN 6 MINUTES
|
||||
#define PARTY_COOLDOWN_LENGTH_MAX 12 MINUTES
|
||||
#define PARTY_COOLDOWN_LENGTH_MIN (6 MINUTES)
|
||||
#define PARTY_COOLDOWN_LENGTH_MAX (12 MINUTES)
|
||||
|
||||
|
||||
/datum/station_trait/lucky_winner
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#define COOLDOWN_STUN 120 SECONDS
|
||||
#define COOLDOWN_DAMAGE 60 SECONDS
|
||||
#define COOLDOWN_MEME 30 SECONDS
|
||||
#define COOLDOWN_NONE 10 SECONDS
|
||||
#define COOLDOWN_STUN (120 SECONDS)
|
||||
#define COOLDOWN_DAMAGE (60 SECONDS)
|
||||
#define COOLDOWN_MEME (30 SECONDS)
|
||||
#define COOLDOWN_NONE (10 SECONDS)
|
||||
|
||||
/// Used to stop listeners with silly or clown-esque (first) names such as "Honk" or "Flip" from screwing up certain commands.
|
||||
GLOBAL_DATUM(all_voice_of_god_triggers, /regex)
|
||||
|
||||
Reference in New Issue
Block a user