mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 06:22:26 +01:00
October Bugfix Bonanza (#3767)
Fixes #3742 - someone unfucked the fix again. Resolves #3740 and resolves #3739. Fixes #1558 - a 10 month long meme is dead. Resolves #3720 by making robo-eyes immune only to the eye stinging effects of pepperspray. Let there be equality amongst the synths. Fixes #3676 - tested, shouldn't break. It was double-calling set_death_timer. Fixes #3672 and fixes #3658 - that was my bad on not noticing the diff around hologram.icon = icon vs add_overlay(icon). Fixes #3762 - I'm surprised this didn't fuck over more.
This commit is contained in:
@@ -137,10 +137,10 @@
|
||||
|
||||
SSnanoui.update_uis(src)
|
||||
|
||||
if (locate(/datum/reagent/toxin) in beaker.reagents.reagent_list && toxins < 100)
|
||||
if ((locate(/datum/reagent/toxin) in beaker.reagents.reagent_list) && toxins < 100)
|
||||
for(var/datum/reagent/toxin/T in beaker.reagents.reagent_list)
|
||||
toxins += max(T.strength,1)
|
||||
beaker.reagents.remove_reagent(T.id,1)
|
||||
beaker.reagents.remove_reagent(T.id, 1)
|
||||
if(toxins > 100)
|
||||
toxins = 100
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user