diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 7390070c68e..a216df17dd0 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -121,6 +121,7 @@ /obj/item/export_scanner, /obj/item/device/price_scanner, /obj/item/device/cratescanner, + /obj/item/device/destTagger, /obj/item/device/quikpay ) content_overlays = TRUE diff --git a/code/modules/cargo/export_scanner.dm b/code/modules/cargo/export_scanner.dm index d1c0feb6eed..98ad0aad144 100644 --- a/code/modules/cargo/export_scanner.dm +++ b/code/modules/cargo/export_scanner.dm @@ -1,8 +1,8 @@ /obj/item/export_scanner name = "export scanner" desc = "A device used to check objects against NanoTrasen exports and bounty database." - icon = 'icons/obj/item/device/price_scanner.dmi' - icon_state = "price_scanner" + icon = 'icons/obj/item/device/export_scanner.dmi' + icon_state = "export_scanner" slot_flags = SLOT_BELT item_flags = ITEM_FLAG_NO_BLUDGEON w_class = WEIGHT_CLASS_SMALL diff --git a/html/changelogs/PriceGunColor.yml b/html/changelogs/PriceGunColor.yml new file mode 100644 index 00000000000..422d9c267b4 --- /dev/null +++ b/html/changelogs/PriceGunColor.yml @@ -0,0 +1,7 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "The price scanner is now gold colored." + - rscadd: "The destination tagger now fits in the toolbelt." diff --git a/icons/obj/item/device/export_scanner.dmi b/icons/obj/item/device/export_scanner.dmi new file mode 100644 index 00000000000..3947c16e985 Binary files /dev/null and b/icons/obj/item/device/export_scanner.dmi differ diff --git a/icons/obj/item/device/price_scanner.dmi b/icons/obj/item/device/price_scanner.dmi index f3be844e2c0..6cee1b4cc7c 100644 Binary files a/icons/obj/item/device/price_scanner.dmi and b/icons/obj/item/device/price_scanner.dmi differ