From b228b68961c087cf973a8e2bf550fffd2cdfee86 Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:25:24 +0100 Subject: [PATCH] Project ARES: Fix gas duration (#7119) # About the pull request As title # Changelog :cl: fix: Fixes the duration of the AI Core nerve gas, will no longer last a full minute. /:cl: --- code/game/objects/structures/pipes/vents/vents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/pipes/vents/vents.dm b/code/game/objects/structures/pipes/vents/vents.dm index d7e090c581c5..e9e7afd62577 100644 --- a/code/game/objects/structures/pipes/vents/vents.dm +++ b/code/game/objects/structures/pipes/vents/vents.dm @@ -180,5 +180,5 @@ if(!gas_holder || welded) return FALSE playsound(loc, 'sound/effects/smoke.ogg', 25, 1, 4) - gas_holder.set_up(radius, 0, get_turf(src), null, 10 SECONDS) + gas_holder.set_up(radius, 0, get_turf(src), null, 10) gas_holder.start()