Skip to content

Commit

Permalink
arrow's requests
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamySkrell committed Feb 11, 2025
1 parent 83ff4cd commit 6880086
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/machinery/teleporter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
if(!user_id || !istype(user_id))
var/choice = tgui_alert(user,
"Current odyssey scenario has defined ID access, but you do not seem to have an ID on you. You can get one from the actor vendor.",
"Teleport Warning", list("Ok", "Cancel")
"Teleport Warning", list("Continue Teleport", "Cancel Teleport")
)
if(choice != "Ok")
return
Expand All @@ -164,7 +164,7 @@
if(isemptylist(user_id.access & scenario_access_ids))
var/choice = tgui_alert(user,
"Current odyssey scenario has defined ID access, but you do not seem to have an ID with any such access. You can change access of your ID using the actor access terminal.",
"Teleport Warning", list("Ok", "Cancel")
"Teleport Warning", list("Continue Teleport", "Cancel Teleport")
)
if(choice != "Ok")
return
Expand All @@ -175,7 +175,7 @@
if(istype(living) && !living.check_contents_for(/obj/item/device/radio/headset/ship/odyssey))
var/choice = tgui_alert(user,
"Current odyssey scenario has defined radio channel, but you do not seem to have a headset that can transmit that channel. You can get one from the actor vendor.",
"Teleport Warning", list("Ok", "Cancel")
"Teleport Warning", list("Continue Teleport", "Cancel Teleport")
)
if(choice != "Ok")
return
Expand Down

0 comments on commit 6880086

Please sign in to comment.