Merge pull request #6936 from VOREStation/vplk-sundry-bugfixes-xi

[PORT] Sundry Bugfixes XI
This commit is contained in:
Atermonera
2020-04-04 23:36:44 -07:00
committed by GitHub
5 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -131,7 +131,7 @@
return
var/msg = input("Message:", text("Enter the text you wish to appear to your target:")) as text
if(!(msg[1] == "<" && msg[length(msg)] == ">")) //You can use HTML but only if the whole thing is HTML. Tries to prevent admin 'accidents'.
if(msg && !(msg[1] == "<" && msg[length(msg)] == ">")) //You can use HTML but only if the whole thing is HTML. Tries to prevent admin 'accidents'.
msg = sanitize(msg)
if( !msg )