remove useless returns

This commit is contained in:
SteelSlayer
2021-07-26 19:07:07 -05:00
parent 9659fbd0f8
commit c18c177002
4 changed files with 0 additions and 4 deletions
@@ -44,7 +44,6 @@ Thus, the two variables affect pump operation are set in New():
/obj/machinery/atmospherics/binary/pump/AltClick(mob/living/user)
if(can_use_shortcut(user))
set_max(user)
return
/obj/machinery/atmospherics/binary/pump/AIAltClick()
set_max()
@@ -41,7 +41,6 @@ Thus, the two variables affect pump operation are set in New():
/obj/machinery/atmospherics/binary/volume_pump/AltClick(mob/living/user)
if(can_use_shortcut(user))
set_max(user)
return
/obj/machinery/atmospherics/binary/volume_pump/AIAltClick()
set_max()
@@ -47,7 +47,6 @@
/obj/machinery/atmospherics/trinary/filter/AltClick(mob/living/user)
if(can_use_shortcut(user))
set_max(user)
return
/obj/machinery/atmospherics/trinary/filter/AIAltClick()
set_max()
@@ -28,7 +28,6 @@
/obj/machinery/atmospherics/trinary/mixer/AltClick(mob/living/user)
if(can_use_shortcut(user))
set_max(user)
return ..()
/obj/machinery/atmospherics/trinary/mixer/AIAltClick()
set_max()