From 71983c386375d43274f8067af0eb8b19dc890936 Mon Sep 17 00:00:00 2001 From: DarkWater Date: Wed, 11 Sep 2024 12:19:20 +0300 Subject: [PATCH] Updated standard battery for cooler --- code/game/objects/items/devices/suit_cooling.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index 883cdfd0ed09..81aa27d479cc 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -29,7 +29,7 @@ /obj/item/device/suit_cooling_unit/atom_init() . = ..() - cell = new(src) // comes with the crappy default power cell - high-capacity ones shouldn't be hard to find + cell = new /obj/item/weapon/stock_parts/cell/high(src) /obj/item/device/suit_cooling_unit/Destroy() QDEL_NULL(cell)