From 8d3ff18cb80e0eb418639a3807b3b8df5a2ed58c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=9B=88=E1=9B=9F=E1=9A=B2=E1=9A=B2=E1=9B=96=E1=9B=8F?= =?UTF-8?q?=E1=9B=8B?= <55299415+Pockets-byte@users.noreply.github.com> Date: Tue, 10 Sep 2024 07:02:44 -0600 Subject: [PATCH] small stuff --- .../modules/munitions/ship_weapons/energy_weapons/phaser.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsv13/code/modules/munitions/ship_weapons/energy_weapons/phaser.dm b/nsv13/code/modules/munitions/ship_weapons/energy_weapons/phaser.dm index 1c0ee360171..b53c27e8b91 100644 --- a/nsv13/code/modules/munitions/ship_weapons/energy_weapons/phaser.dm +++ b/nsv13/code/modules/munitions/ship_weapons/energy_weapons/phaser.dm @@ -395,7 +395,7 @@ to_chat(user, "You being aligning the lenses.") while(alignment < 100) if(!do_after(user, 5, target = src)) - return ..() + return TRUE alignment += rand(1,2) if(alignment >= 100) alignment = 100 @@ -404,6 +404,6 @@ return ..() /obj/machinery/ship_weapon/energy/Destroy() - for(var/obj/machinery/cooling/E in storages & coolers) + for(var/obj/machinery/cooling/E in storages | coolers) E.parent = null . = ..()