mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Remove unused mapping verb
This commit is contained in:
@@ -155,28 +155,12 @@ var/intercom_range_display_status = 0
|
||||
src.verbs += /datum/admins/proc/show_traitor_panel
|
||||
src.verbs += /client/proc/disable_communication
|
||||
src.verbs += /client/proc/print_pointers
|
||||
src.verbs += /client/proc/count_movable_instances
|
||||
src.verbs += /client/proc/cmd_show_at_list
|
||||
src.verbs += /client/proc/cmd_show_at_list
|
||||
src.verbs += /client/proc/manipulate_organs
|
||||
|
||||
feedback_add_details("admin_verb","mDV") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
||||
|
||||
/client/proc/count_movable_instances()
|
||||
set category = "Debug"
|
||||
set name = "Count Movable Instances"
|
||||
|
||||
var/count = 0;
|
||||
|
||||
// Apparently there's a BYOND limit on the number of instances for non-turfs.
|
||||
|
||||
for(var/thing in world)
|
||||
if(isturf(thing))
|
||||
continue
|
||||
count++;
|
||||
usr << "There are [count]/65535 instances of non-turfs in the world."
|
||||
|
||||
|
||||
/client/proc/count_objects_on_z_level()
|
||||
set category = "Mapping"
|
||||
set name = "Count Objects On Level"
|
||||
|
||||
Reference in New Issue
Block a user