mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 08:34:16 +01:00
APC screwdriving bug fixed.
Experimental: welding helmet nerf. It now reduces view range. For now this feature is globally turned off by default. Admins in game can turn it on if they like it. See "debug" tab. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@897 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -2209,6 +2209,17 @@ var/showadminmessages = 1
|
||||
usr << "Sorry, this mob have no mind!"
|
||||
M.mind.edit_memory()
|
||||
|
||||
/obj/admins/proc/toggletintedweldhelmets()
|
||||
set category = "Debug"
|
||||
set desc="Reduces view range when wearing welding helmets"
|
||||
set name="Toggle tinted welding helmes"
|
||||
tinted_weldhelh = !( tinted_weldhelh )
|
||||
if (tinted_weldhelh)
|
||||
world << "<B>The tinted_weldhelh has been enabled!</B>"
|
||||
else
|
||||
world << "<B>The tinted_weldhelh has been disabled!</B>"
|
||||
log_admin("[key_name(usr)] toggled tinted_weldhelh.")
|
||||
message_admins("[key_name_admin(usr)] toggled tinted_weldhelh.", 1)
|
||||
//
|
||||
//
|
||||
//ALL DONE
|
||||
|
||||
@@ -80,6 +80,8 @@
|
||||
src.verbs += /client/proc/ticklag
|
||||
src.verbs += /proc/givetestverbs
|
||||
src.verbs += /obj/admins/proc/spawn_atom
|
||||
src.verbs += /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
|
||||
// Admin helpers
|
||||
src.verbs += /client/proc/cmd_admin_attack_log
|
||||
@@ -204,6 +206,7 @@
|
||||
src.verbs += /client/proc/ticklag
|
||||
src.verbs += /proc/givetestverbs
|
||||
src.verbs += /obj/admins/proc/spawn_atom
|
||||
src.verbs += /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
// Admin helpers
|
||||
src.verbs += /client/proc/cmd_admin_attack_log
|
||||
@@ -329,6 +332,7 @@
|
||||
//src.verbs += /client/proc/ticklag
|
||||
//src.verbs += /proc/givetestverbs
|
||||
//src.verbs += /obj/admins/proc/spawn_atom
|
||||
src.verbs += /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
// Admin helpers
|
||||
src.verbs += /client/proc/cmd_admin_attack_log
|
||||
@@ -481,6 +485,7 @@
|
||||
//src.verbs += /client/proc/ticklag
|
||||
//src.verbs += /proc/givetestverbs
|
||||
//src.verbs += /obj/admins/proc/spawn_atom
|
||||
src.verbs += /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
// Admin helpers
|
||||
src.verbs += /client/proc/cmd_admin_attack_log
|
||||
@@ -623,6 +628,7 @@
|
||||
//src.verbs += /client/proc/ticklag
|
||||
//src.verbs += /proc/givetestverbs
|
||||
//src.verbs += /obj/admins/proc/spawn_atom
|
||||
src.verbs += /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
// Admin helpers
|
||||
//src.verbs += /client/proc/cmd_admin_attack_log
|
||||
@@ -1036,6 +1042,7 @@
|
||||
src.verbs -= /client/proc/ticklag
|
||||
src.verbs -= /proc/givetestverbs
|
||||
src.verbs -= /obj/admins/proc/spawn_atom
|
||||
src.verbs -= /obj/admins/proc/toggletintedweldhelmets
|
||||
|
||||
// Admin helpers
|
||||
src.verbs -= /client/proc/cmd_admin_attack_log
|
||||
|
||||
Reference in New Issue
Block a user