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 . = ..()