added cancel to more powers, hand tele, cleanups to others

This commit is contained in:
Tastyfish
2015-11-30 22:30:57 -05:00
parent 897313844b
commit 280fc65938
6 changed files with 29 additions and 16 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey","
msg = input("Please enter your message.", "Admin Help", null, null) as text|null
//clean the input msg
if(msg == null || length(msg) == 0)
if(!msg)
return
if(src.handle_spam_prevention(msg,MUTE_ADMINHELP))
+2 -2
View File
@@ -134,7 +134,7 @@
var/attempt_code = text2num(input("Re-enter the current EFTPOS access code", "Confirm EFTPOS code"))
if(attempt_code == access_code)
var name = input("Enter a new terminal ID for this device", "Enter new EFTPOS ID") as text|null
if(name && length(name) > 0)
if(name)
eftpos_name = name + " EFTPOS scanner"
print_reference()
else
@@ -150,7 +150,7 @@
usr << "\icon[src]<span class='warning'>Unable to connect to accounts database.</span>"
if("trans_purpose")
var/purpose = input("Enter reason for EFTPOS transaction", "Transaction purpose") as text|null
if(purpose && length(purpose) > 0)
if(purpose)
transaction_purpose = purpose
if("trans_value")
var/try_num = input("Enter amount for EFTPOS transaction", "Transaction amount") as num