Skip to content

Commit

Permalink
Update code antag paths
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhEugene committed Nov 24, 2023
1 parent fc213e2 commit 9bd8f41
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mods/_master_files/code/game/gamemodes/ert.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/datum/map_template/ruin/antag_spawn/ert
prefix = "mods/_antagonists/maps/"
prefix = "mods/antagonists/maps/"
suffixes = list("ert_base.dmm")
shuttles_to_initialise = list(/datum/shuttle/autodock/multi/antag/rescue)
apc_test_exempt_areas = list(/area/map_template/rescue_base = NO_SCRUBBER|NO_VENT|NO_APC)
Expand Down
4 changes: 2 additions & 2 deletions mods/antagonists/code/teleportation.dm
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/proc/animated_teleportation(atom/movable/target, atom/anchor)
if(ismob(target))
to_chat(target, SPAN_WARNING("You feel like something pulling you in bluespace."))
var/obj/temporary/A = new(get_turf(target), 24.5, 'mods/_antagonists/icons/effects/bs_silk.dmi', "silc_teleport_back")
var/obj/temporary/A = new(get_turf(target), 24.5, 'mods/antagonists/icons/effects/bs_silk.dmi', "silc_teleport_back")
target.set_dir(2)
target.forceMove(A)
addtimer(new Callback(GLOBAL_PROC, .proc/animated_teleportation_ending, target, anchor), 23)

/proc/animated_teleportation_ending(atom/movable/target, atom/anchor)
target.set_dir(2)
target.forceMove(new /obj/temporary(get_turf(anchor), 26.5, 'mods/_antagonists/icons/effects/bs_silk.dmi', "silc_get_hub"))
target.forceMove(new /obj/temporary(get_turf(anchor), 26.5, 'mods/antagonists/icons/effects/bs_silk.dmi', "silc_get_hub"))
addtimer(new Callback(GLOBAL_PROC, .proc/finalize_animated_teleportation, target, anchor), 24)

/proc/finalize_animated_teleportation(atom/movable/target, atom/anchor)
Expand Down
6 changes: 3 additions & 3 deletions mods/antagonists/code/traitor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
name = "door charge"
desc = "This is a booby trap, planted on doors. When door opens, it will explode!."
gender = PLURAL
icon = 'mods/_antagonists/icons/obj/door_charge.dmi'
icon = 'mods/antagonists/icons/obj/door_charge.dmi'
icon_state = "door_charge"
item_state = "door_charge"
item_flags = ITEM_FLAG_NO_BLUDGEON
Expand Down Expand Up @@ -59,7 +59,7 @@
/obj/item/device/syndietele
name = "strange sensor"
desc = "Looks like regular powernet sensor, but this one almost black and have spooky red light blinking"
icon = 'mods/_antagonists/icons/obj/syndiejaunter.dmi'
icon = 'mods/antagonists/icons/obj/syndiejaunter.dmi'
icon_state = "beacon"
item_state = "signaler"
origin_tech = list(TECH_BLUESPACE = 4, TECH_ESOTERIC = 3)
Expand All @@ -69,7 +69,7 @@
/obj/item/device/syndiejaunter
name = "strange device"
desc = "This thing looks like remote. Almost black, with red button and status display."
icon = 'mods/_antagonists/icons/obj/syndiejaunter.dmi'
icon = 'mods/antagonists/icons/obj/syndiejaunter.dmi'
icon_state = "jaunter"
item_state = "jaunter"
w_class = ITEM_SIZE_SMALL
Expand Down

0 comments on commit 9bd8f41

Please sign in to comment.