From 677c6a1f7101a7d051d3a3766dedfddf0cdd670e Mon Sep 17 00:00:00 2001 From: Leshana Date: Sat, 30 May 2020 16:24:30 -0400 Subject: [PATCH] Cleanup proc return statement. --- code/game/machinery/machinery_power.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/machinery/machinery_power.dm b/code/game/machinery/machinery_power.dm index aa3d301e53..be648d0f80 100644 --- a/code/game/machinery/machinery_power.dm +++ b/code/game/machinery/machinery_power.dm @@ -42,8 +42,7 @@ stat &= ~NOPOWER else stat |= NOPOWER - . = (stat != oldstat) - return + return (stat != oldstat) // Get the amount of power this machine will consume each cycle. Override by experts only! /obj/machinery/proc/get_power_usage()