diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index bfc8e308a3e..c27de5c31c8 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -168,6 +168,7 @@ /obj/machinery/teleport/hub name = "teleporter hub" desc = "It's the hub of a teleporting machine." + icon = 'icons/obj/teleporter_vr.dmi' //VOREStation Add icon_state = "tele0" dir = 4 var/accurate = 0 @@ -323,6 +324,7 @@ /obj/machinery/teleport/station name = "station" desc = "It's the station thingy of a teleport thingy." //seriously, wtf. + icon = 'icons/obj/teleporter_vr.dmi' //VOREStation Add icon_state = "controller" dir = 4 var/active = 0 @@ -401,6 +403,7 @@ O.show_message("Test firing!", 2) com.teleport() use_power(5000) + flick(src, "controller-c") //VOREStation Add spawn(30) active=0 diff --git a/icons/obj/teleporter_vr.dmi b/icons/obj/teleporter_vr.dmi new file mode 100644 index 00000000000..005def0f17c Binary files /dev/null and b/icons/obj/teleporter_vr.dmi differ