mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 15:47:15 +01:00
[MIRROR] Fixes slime heretics being hurt by rust (#3570)
* Fixes slime heretics being hurt by rust (#57041) * Fixes slime heretics being hurt by rust Co-authored-by: itseasytosee <55666666+itseasytosee@users.noreply.github.com>
This commit is contained in:
co-authored by
itseasytosee
parent
a6152bbf1a
commit
8954ed7728
@@ -66,7 +66,7 @@
|
||||
var/mob/living/living_user = user
|
||||
living_user.adjustBruteLoss(-2, FALSE)
|
||||
living_user.adjustFireLoss(-2, FALSE)
|
||||
living_user.adjustToxLoss(-2, FALSE)
|
||||
living_user.adjustToxLoss(-2, FALSE, forced = TRUE)
|
||||
living_user.adjustOxyLoss(-0.5, FALSE)
|
||||
living_user.adjustStaminaLoss(-2)
|
||||
living_user.AdjustAllImmobility(-5)
|
||||
@@ -155,7 +155,7 @@
|
||||
var/mob/living/carbon/human/human_user = user
|
||||
human_user.adjustBruteLoss(-4, FALSE)
|
||||
human_user.adjustFireLoss(-4, FALSE)
|
||||
human_user.adjustToxLoss(-4, FALSE)
|
||||
human_user.adjustToxLoss(-4, FALSE, forced = TRUE)
|
||||
human_user.adjustOxyLoss(-2, FALSE)
|
||||
human_user.adjustStaminaLoss(-20)
|
||||
human_user.AdjustAllImmobility(-10)
|
||||
|
||||
@@ -2580,7 +2580,7 @@
|
||||
M.drowsyness = max(M.drowsyness - (5 * REM * delta_time), 0)
|
||||
M.AdjustAllImmobility(-40 * REM * delta_time)
|
||||
M.adjustStaminaLoss(-10 * REM * delta_time, FALSE)
|
||||
M.adjustToxLoss(-2 * REM * delta_time, FALSE)
|
||||
M.adjustToxLoss(-2 * REM * delta_time, FALSE, forced = TRUE)
|
||||
M.adjustOxyLoss(-2 * REM * delta_time, FALSE)
|
||||
M.adjustBruteLoss(-2 * REM * delta_time, FALSE)
|
||||
M.adjustFireLoss(-2 * REM * delta_time, FALSE)
|
||||
|
||||
Reference in New Issue
Block a user