diff --git a/code/modules/recycling/belt-placer.dm b/code/modules/recycling/belt-placer.dm index 3cd305d9385..e58ffa9a837 100644 --- a/code/modules/recycling/belt-placer.dm +++ b/code/modules/recycling/belt-placer.dm @@ -2,6 +2,7 @@ name = "conveyor belt placer" desc = "This device facilitates the rapid deployment of conveyor belts." icon_state = "belt_placer" + item_state = "cbp" w_class = WEIGHT_CLASS_BULKY //Because belts are large things, you know? can_hold = list(/obj/item/conveyor_construct) max_w_class = WEIGHT_CLASS_BULKY @@ -16,9 +17,10 @@ name = "bluespace conveyor belt placer" desc = "This device facilitates the rapid deployment of conveyor belts. This one has an unlimited capacity for belts, thanks to bluespace technology." icon_state = "bluespace_belt_placer" + item_state = "bluespace_cbp" w_class = WEIGHT_CLASS_NORMAL storage_slots = INFINITY - max_combined_w_class = INFINITY + max_combined_w_class = 200 //50 belts origin_tech = "engineering=2;bluespace=1" /obj/item/storage/conveyor/attackby(obj/item/conveyor_switch_construct/S, mob/user, params) //So we can link belts en masse diff --git a/icons/mob/inhands/items_lefthand.dmi b/icons/mob/inhands/items_lefthand.dmi index bc282c185d8..70eb4a0bdd9 100644 Binary files a/icons/mob/inhands/items_lefthand.dmi and b/icons/mob/inhands/items_lefthand.dmi differ diff --git a/icons/mob/inhands/items_righthand.dmi b/icons/mob/inhands/items_righthand.dmi index 8b41a0ec07d..5c79702d60f 100644 Binary files a/icons/mob/inhands/items_righthand.dmi and b/icons/mob/inhands/items_righthand.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index fe058a3e35f..1cfda4683da 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ