Merge pull request #13022 from tkdrg/morefix

R&D and Misc Fixes/Tweaks
This commit is contained in:
Cheridan
2015-11-15 14:19:44 -06:00
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -141,8 +141,8 @@
if(!src.holder)
src << "Only administrators may use this command."
return
var/area/A = input(usr, "Pick an area.", "Pick an area") in sortedAreas
if(A)
var/area/A = input(usr, "Pick an area.", "Pick an area") in sortedAreas|null
if(A && istype(A))
admin_forcemove(M, pick(get_area_turfs(A)))
feedback_add_details("admin_verb","SMOB") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
log_admin("[key_name(usr)] teleported [key_name(M)] to [A]")