From 630d823d1a33c4eb5603432ab806f6699fa7d694 Mon Sep 17 00:00:00 2001 From: oranges Date: Tue, 23 Jan 2018 20:12:22 +1300 Subject: [PATCH 1/2] Merge pull request #34810 from tgstation/KorPhaeron-patch-2 [s]Fixes being able to lower w_class of transfer valves --- code/game/objects/items/devices/transfer_valve.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm index 943ff030b3..720535f79a 100644 --- a/code/game/objects/items/devices/transfer_valve.dm +++ b/code/game/objects/items/devices/transfer_valve.dm @@ -80,16 +80,12 @@ tank_one.forceMove(drop_location()) tank_one = null update_icon() - if((!tank_two || tank_two.w_class < WEIGHT_CLASS_BULKY) && (w_class > WEIGHT_CLASS_NORMAL)) - w_class = WEIGHT_CLASS_NORMAL else if(tank_two && href_list["tanktwo"]) split_gases() valve_open = FALSE tank_two.forceMove(drop_location()) tank_two = null update_icon() - if((!tank_one || tank_one.w_class < WEIGHT_CLASS_BULKY) && (w_class > WEIGHT_CLASS_NORMAL)) - w_class = WEIGHT_CLASS_NORMAL else if(href_list["open"]) toggle_valve() else if(attached_device)