diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 76a5cb26d3..21bff416fe 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -271,6 +271,7 @@ R.hud_used.update_robot_modules_display() /obj/item/attackby(obj/item/weapon/W as obj, mob/user as mob) + . = ..() if(istype(W, /obj/item/weapon/storage)) var/obj/item/weapon/storage/S = W if(S.use_to_pickup) diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 837c6616f7..18fc293542 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -29,6 +29,7 @@ var/obj/machinery/connectable //Used to connect machinery. var/weakref_wiring //Used to store weak references for integrated circuitry. This is now the Omnitool. toolspeed = 1 + tool_qualities = list(TOOL_MULTITOOL) /obj/item/device/multitool/attack_self(mob/living/user) var/choice = alert("What do you want to do with \the [src]?","Multitool Menu", "Switch Mode", "Clear Buffers", "Cancel")