Skip to content

Commit

Permalink
:GUN: byond://
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dzianishchyts committed Apr 17, 2024
1 parent 45b75f1 commit 8310e26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/modules/client/preference/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ GLOBAL_LIST_INIT(special_role_times, list( //minimum age (in days) for accounts
if(GLOB.configuration.tts.tts_enabled)
dat += {"
<h2>Text-to-Speech</h2>
<b>Выбор голоса:</b> <a href='?_src_=prefs;preference=tts_seed;task=input'>Эксплорер TTS голосов</a><br>
<b>Выбор голоса:</b> <a href='byond://?_src_=prefs;preference=tts_seed;task=input'>Эксплорер TTS голосов</a><br>
"}
// SS220 ADDITION END

Expand Down
4 changes: 2 additions & 2 deletions modular_ss220/antagonists/code/mind/memory_edit.dm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/datum/mind/proc/memory_edit_blood_brother()
. = _memory_edit_header("blood brother")
if(has_antag_datum(/datum/antagonist/blood_brother))
. += "<b><font color='red'>BLOOD BROTHER</font></b>|<a href='?src=[UID()];blood_brother=clear'>Remove</a>"
. += "<b><font color='red'>BLOOD BROTHER</font></b>|<a href='byond://?src=[UID()];blood_brother=clear'>Remove</a>"
else
. += "<a href='?src=[UID()];blood_brother=make'>Make Blood Brother</a>"
. += "<a href='byond://?src=[UID()];blood_brother=make'>Make Blood Brother</a>"

. += _memory_edit_role_enabled(ROLE_BLOOD_BROTHER)

Expand Down
2 changes: 1 addition & 1 deletion modular_ss220/objects/code/mecha/lockermech.dm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
output += "<b>Cargo Compartment Contents:</b><div style='margin-left: 15px;'>"
if(length(cargo))
for(var/obj/cargo_item as anything in cargo)
output += "<a href='?src=[UID()];drop_from_cargo=[cargo_item.UID()]'>Unload</a> : [cargo_item]<br>"
output += "<a href='byond://?src=[UID()];drop_from_cargo=[cargo_item.UID()]'>Unload</a> : [cargo_item]<br>"
else
output += "Nothing"
output += "</div>"
Expand Down

0 comments on commit 8310e26

Please sign in to comment.