diff --git a/code/game/objects/items/gear_packs.dm b/code/game/objects/items/gear_packs.dm index e021053ca212..5b3bc1f2c3a1 100644 --- a/code/game/objects/items/gear_packs.dm +++ b/code/game/objects/items/gear_packs.dm @@ -11,6 +11,7 @@ item_flags = SLOWS_WHILE_IN_HAND max_integrity = 300 slowdown = 1 + drag_slowdown = 1 actions_types = list(/datum/action/item_action/toggle_attachment) max_integrity = 200 armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) @@ -28,6 +29,7 @@ /obj/item/gear_pack/Initialize() . = ..() + drag_slowdown = slowdown attachment = new attachment_type(src) cell = new(src) update_power() diff --git a/code/modules/surgery/experimental_dissection.dm b/code/modules/surgery/experimental_dissection.dm index 9d2405172e0a..44bf8852e24a 100644 --- a/code/modules/surgery/experimental_dissection.dm +++ b/code/modules/surgery/experimental_dissection.dm @@ -124,6 +124,7 @@ name = "Experimental Dissection" value_multiplier = 2 requires_tech = TRUE + replaced_by = null #undef BASE_HUMAN_REWARD #undef EXPDIS_FAIL_MSG