mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 07:54:14 +00:00
* The REAL TGU Pepsi's TGU is completely empty and has been sitting around doing nothing for a while. I wanted to get my PDA stuff in and it's been a while since I did one, so I'm doing a TGU. * Ports over PDA fix * fix dme * oops * Fixes wonderland anomalies * Update mobspawner.dm * Update Heliostation.dmm
4 lines
254 B
Plaintext
4 lines
254 B
Plaintext
#define NITRILE_GLOVES_MULTIPLIER 0.5
|
|
///multiplies the time of do_after by NITRILE_GLOVES_MULTIPLIER if the user has the TRAIT_FASTMED
|
|
#define CHEM_INTERACT_DELAY(delay, user) HAS_TRAIT(user, TRAIT_FASTMED) ? (delay * NITRILE_GLOVES_MULTIPLIER) : delay
|