diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 626c42d65a4..6a3ec38c3da 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -27,8 +27,11 @@ throw_speed = 3 drop_sound = 'sound/items/handling/tools/multitool_drop.ogg' pickup_sound = 'sound/items/handling/tools/multitool_pickup.ogg' - custom_materials = list(/datum/material/iron= SMALL_MATERIAL_AMOUNT * 0.5, /datum/material/glass= SMALL_MATERIAL_AMOUNT * 0.2) - custom_premium_price = PAYCHECK_COMMAND * 3 + custom_materials = list( + /datum/material/iron =SMALL_MATERIAL_AMOUNT * 0.5, + /datum/material/glass =SMALL_MATERIAL_AMOUNT * 0.2 + ) + custom_premium_price = PAYCHECK_CREW * 3 toolspeed = 1 usesound = 'sound/items/weapons/empty.ogg' var/datum/buffer // simple machine buffer for device linkage diff --git a/code/modules/research/designs/autolathe/multi-department_designs.dm b/code/modules/research/designs/autolathe/multi-department_designs.dm index bb7761c86fa..bb6a1d47840 100644 --- a/code/modules/research/designs/autolathe/multi-department_designs.dm +++ b/code/modules/research/designs/autolathe/multi-department_designs.dm @@ -40,7 +40,10 @@ name = "Multitool" id = "multitool" build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE - materials = list(/datum/material/iron =SMALL_MATERIAL_AMOUNT*0.5, /datum/material/glass =SMALL_MATERIAL_AMOUNT*0.2) + materials = list( + /datum/material/iron =SMALL_MATERIAL_AMOUNT * 0.5, + /datum/material/glass =SMALL_MATERIAL_AMOUNT * 0.2 + ) build_path = /obj/item/multitool category = list( RND_CATEGORY_INITIAL, diff --git a/code/modules/vending/youtool.dm b/code/modules/vending/youtool.dm index 819ddbe2208..c339c2d687a 100644 --- a/code/modules/vending/youtool.dm +++ b/code/modules/vending/youtool.dm @@ -24,7 +24,7 @@ ) premium = list( /obj/item/storage/belt/utility = 2, - /obj/item/multitool = 2, + /obj/item/multitool = 4, /obj/item/weldingtool/hugetank = 2, /obj/item/clothing/head/utility/welding = 2, /obj/item/clothing/gloves/color/yellow = 1,