mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 14:08:31 +01:00
R&D and Misc Fixes/Tweaks
Fixes invisible gasmask exploit. Fixes mineral duplication exploit in protolathe. You can no longer break a RD Console while a linked machine is busy. Adds cancel button to admin Send To. Fixes #12729 Fixes #12197 Fixes #11741 Fixes #11449
This commit is contained in:
@@ -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]")
|
||||
|
||||
Reference in New Issue
Block a user