diff --git a/code/game/gamemodes/technomancer/equipment.dm b/code/game/gamemodes/technomancer/equipment.dm index 940e31f3cd..b96895a644 100644 --- a/code/game/gamemodes/technomancer/equipment.dm +++ b/code/game/gamemodes/technomancer/equipment.dm @@ -208,10 +208,4 @@ name = "Spyglass" desc = "A mundane spyglass, it may prove useful to those who wish to scout ahead, or fight from an extreme range." cost = 100 - obj_path = /obj/item/device/binoculars/spyglass - -/obj/item/device/binoculars/spyglass - name = "spyglass" - desc = "It's a hand-held telescope, useful for star-gazing, peeping, and recon." - icon_state = "spyglass" - slot_flags = SLOT_BELT + obj_path = /obj/item/device/binoculars/spyglass \ No newline at end of file diff --git a/code/game/objects/items/devices/binoculars.dm b/code/game/objects/items/devices/binoculars.dm index a971115ada..fd1725f4ff 100644 --- a/code/game/objects/items/devices/binoculars.dm +++ b/code/game/objects/items/devices/binoculars.dm @@ -1,15 +1,22 @@ + +//Binoculars /obj/item/device/binoculars + name = "binoculars" desc = "A pair of binoculars." + zoomdevicename = "eyepieces" icon_state = "binoculars" force = 5.0 - w_class = ITEMSIZE_SMALL throwforce = 5.0 throw_range = 15 throw_speed = 3 - //matter = list("metal" = 50,"glass" = 50) - - /obj/item/device/binoculars/attack_self(mob/user) zoom() + +//Spyglass +/obj/item/device/binoculars/spyglass + name = "spyglass" + desc = "A classic spyglass. Useful for star-gazing, peeping, and recon." + icon_state = "spyglass" + slot_flags = SLOT_BELT \ No newline at end of file diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index bd3f5a5f71..a86db9a720 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ