mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
Medical belt is finally in code (made by errorage, forgotten by errorage).
Pill bottles now can fit in containers (and pockets). Moved remained adminverbs from Commands tab. Map debugging tools tab is hidden, use verb on debug tab to show. Singularity's EMP now won't spam in adminlog. Revolutionaries now cannot deconvert themselves. Cutting camera now leaves fingerprints. Fixed some runtime errors. Unckecked file that microvave forgot to add under svn. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1277 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -87,10 +87,11 @@
|
||||
src.verbs += /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
// Mapping helpers
|
||||
src.verbs += /client/proc/do_not_use_these //-errorage
|
||||
src.verbs += /client/proc/camera_view //-errorage
|
||||
src.verbs += /client/proc/sec_camera_report //-errorage
|
||||
src.verbs += /client/proc/intercom_view //-errorage
|
||||
// src.verbs += /client/proc/do_not_use_these //-errorage
|
||||
// src.verbs += /client/proc/camera_view //-errorage
|
||||
// src.verbs += /client/proc/sec_camera_report //-errorage
|
||||
// src.verbs += /client/proc/intercom_view //-errorage
|
||||
src.verbs += /client/proc/enable_mapping_debug //-rastaf0
|
||||
|
||||
// Admin helpers
|
||||
src.verbs += /client/proc/cmd_admin_attack_log
|
||||
@@ -1061,6 +1062,13 @@
|
||||
src.verbs -= /proc/givetestverbs
|
||||
src.verbs -= /obj/admins/proc/spawn_atom
|
||||
src.verbs -= /obj/admins/proc/toggletintedweldhelmets
|
||||
src.verbs -= /client/proc/atmosscan
|
||||
src.verbs -= /client/proc/restartcontroller
|
||||
src.verbs -= /client/proc/enable_mapping_debug
|
||||
src.verbs -= /client/proc/do_not_use_these
|
||||
src.verbs -= /client/proc/camera_view
|
||||
src.verbs -= /client/proc/sec_camera_report
|
||||
src.verbs -= /client/proc/intercom_view
|
||||
|
||||
// Admin helpers
|
||||
src.verbs -= /client/proc/cmd_admin_attack_log
|
||||
@@ -1113,6 +1121,9 @@
|
||||
src.verbs -= /obj/admins/proc/unprison
|
||||
src.verbs -= /proc/togglebuildmode
|
||||
src.verbs -= /client/proc/cmd_mass_modify_object_variables
|
||||
|
||||
src.verbs -= /client/proc/triple_ai
|
||||
src.verbs -= /client/proc/only_one
|
||||
// Unnecessary commands
|
||||
src.verbs -= /client/proc/funbutton
|
||||
src.verbs -= /client/proc/make_sound // -- TLE
|
||||
@@ -1428,7 +1439,7 @@
|
||||
switch (src.holder.rank)
|
||||
if ("Host")
|
||||
// Settings
|
||||
src.verbs += /client/proc/colorooc // -- Urist
|
||||
//src.verbs += /client/proc/colorooc // -- Urist
|
||||
src.verbs += /obj/admins/proc/adjump //toggle admin jumping
|
||||
src.verbs += /obj/admins/proc/adrev //toggle admin revives
|
||||
src.verbs += /obj/admins/proc/adspawn //toggle admin item spawning
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
/client/proc/jumptoturf(var/turf/T in world)
|
||||
set name = "Jump to Turf"
|
||||
set category = "Admin"
|
||||
if(!src.authenticated || !src.holder)
|
||||
src << "Only administrators may use this command."
|
||||
return
|
||||
|
||||
@@ -108,4 +108,12 @@ var/intercom_range_display_status = 0
|
||||
for(var/turf/T in orange(7,I))
|
||||
var/obj/debugging/marker/F = new/obj/debugging/marker(T)
|
||||
if (!(F in view(7,I.loc)))
|
||||
del(F)
|
||||
del(F)
|
||||
|
||||
enable_mapping_debug()
|
||||
set category = "Debug"
|
||||
set name = "Mapping debug"
|
||||
src.verbs += /client/proc/do_not_use_these //-errorage
|
||||
src.verbs += /client/proc/camera_view //-errorage
|
||||
src.verbs += /client/proc/sec_camera_report //-errorage
|
||||
src.verbs += /client/proc/intercom_view //-errorage
|
||||
|
||||
Reference in New Issue
Block a user