mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Various Tweaks & Fixes (#15857)
* Stuff * Grammar reviewer review Co-authored-by: Sean Williams <12197162+S34NW@users.noreply.github.com> * Shuttle call HTML fix And multiline announcements too, à la #15645. The clean_input() was causing the message to be encoded twice, and only decoded once. Removing it still encodes the string. * Loadout revert Co-authored-by: Sean Williams <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
@@ -93,7 +93,7 @@
|
||||
for(var/P in GLOB.dead_mob_list)
|
||||
var/mob/M = P
|
||||
if((M.client?.prefs.toggles2 & PREFTOGGLE_2_DEATHMESSAGE) && (isobserver(M) || M.stat == DEAD))
|
||||
to_chat(M, "<span class='deadsay'><b>[mind.name]</b> has died at <b>[area_name]</b>. (<a href='?src=[M.UID()];jump=\ref[src]'>JMP</a>)</span>")
|
||||
to_chat(M, "<span class='deadsay'><b>[mind.name]</b> has died at <b>[area_name]</b>. (<a href='?src=[M.UID()];jump=\ref[T]'>JMP</a>)</span>")
|
||||
|
||||
if(SSticker && SSticker.mode)
|
||||
SSticker.mode.check_win()
|
||||
|
||||
@@ -539,7 +539,7 @@ GLOBAL_LIST_INIT(ai_verbs_default, list(
|
||||
if(check_unable(AI_CHECK_WIRELESS))
|
||||
return
|
||||
|
||||
var/input = clean_input("Please enter the reason for calling the shuttle.", "Shuttle Call Reason.","")
|
||||
var/input = input("Please enter the reason for calling the shuttle.", "Shuttle Call Reason.") as null|message
|
||||
if(!input || stat)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user