diff --git a/code/WorkInProgress/buildmode.dm b/code/WorkInProgress/buildmode.dm
index 353f98b365e..ba17008a53b 100644
--- a/code/WorkInProgress/buildmode.dm
+++ b/code/WorkInProgress/buildmode.dm
@@ -1,5 +1,3 @@
-//BUILD MODE SUCKS -Pete
-
/proc/togglebuildmode(mob/M as mob in world)
set name = "Toggle Build Mode"
set category = "Special Verbs"
diff --git a/code/datums/configuration.dm b/code/datums/configuration.dm
index d1fc6c29bd2..2fc67fe9c3e 100644
--- a/code/datums/configuration.dm
+++ b/code/datums/configuration.dm
@@ -33,7 +33,6 @@
var/traitor_scaling = 0 //if amount of traitors scales based on amount of players
var/protect_roles_from_antagonist = 0// If security and such can be tratior/cult/other
var/Tensioner_Active = 0 // If the tensioner is running.
- var/allow_Metadata = 0 // Metadata is suported.
var/list/mode_names = list()
var/list/modes = list() // allowed modes
@@ -231,9 +230,6 @@
if ("feature_object_spell_system")
config.feature_object_spell_system = 1
- if ("allow_metadata")
- config.allow_Metadata = 1
-
if ("traitor_scaling")
config.traitor_scaling = 1
diff --git a/code/datums/datumvars.dm b/code/datums/datumvars.dm
index 2cdf0bc0599..6f19d956a4c 100644
--- a/code/datums/datumvars.dm
+++ b/code/datums/datumvars.dm
@@ -482,8 +482,7 @@ client
if(!src.holder)
return
src.cmd_admin_gib(MOB)
-////I'm removing buildmode because it's shitty and runtimes a lot. -Pete
-/*
+
else if (href_list["build_mode"])
if(!href_list["build_mode"])
return
@@ -496,7 +495,7 @@ client
return
togglebuildmode(MOB)
href_list["datumrefresh"] = href_list["build_mode"]
-*/
+
else if (href_list["delall"])
if(!href_list["delall"])
return
diff --git a/code/game/atom_procs.dm b/code/game/atom_procs.dm
index 09629535ca3..20e5dc6a566 100644
--- a/code/game/atom_procs.dm
+++ b/code/game/atom_procs.dm
@@ -358,12 +358,10 @@
/atom/Click(location,control,params)
//world << "atom.Click() on [src] by [usr] : src.type is [src.type]"
-////I'm removing buildmode because it's shitty and runtimes a lot. -Pete
-/*
if(usr.client.buildmode)
build_click(usr, usr.client.buildmode, location, control, params, src)
return
-*/
+
if(using_new_click_proc) //TODO ERRORAGE (see message below)
return DblClickNew()
return DblClick(location, control, params)
diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm
index d82dc0b8d43..fc429e0a834 100644
--- a/code/modules/admin/admin_verbs.dm
+++ b/code/modules/admin/admin_verbs.dm
@@ -214,7 +214,7 @@
//verbs += /client/proc/cmd_admin_gib --Merged with view variables
//verbs += /proc/togglebuildmode --Merged with view variables
//verbs += /client/proc/cmd_modify_object_variables --Merged with view variables
- //verbs += /client/proc/togglebuildmodeself --removed due to runtimes
+ verbs += /client/proc/togglebuildmodeself
else return
//Game Admin
@@ -411,7 +411,7 @@
//verbs -= /client/proc/cmd_admin_prison --Merged with player panel
//verbs -= /obj/admins/proc/unprison --Merged with player panel
//verbs -= /client/proc/cmd_switch_radio --removed because tcommsat is staying
- //verbs -= /client/proc/togglebuildmodeself --removed due to runtimes
+ verbs -= /client/proc/togglebuildmodeself
verbs -= /client/proc/kill_airgroup
return
@@ -610,14 +610,13 @@
for (var/mob/V in hearers(O))
V.show_message(message, 2)
-////I'm removing buildmode because it's shitty and runtimes a lot. -Pete
-/*
+
/client/proc/togglebuildmodeself()
set name = "Toggle Build Mode Self"
set category = "Special Verbs"
if(src.mob)
togglebuildmode(src.mob)
-*/
+
/client/proc/toggleadminhelpsound()
set name = "Toggle Adminhelp Sound"
@@ -764,7 +763,7 @@
//verbs += /client/proc/cmd_modify_object_variables --merged with view vairiables
verbs += /client/proc/Jump
verbs += /client/proc/jumptoturf
-// verbs += /client/proc/togglebuildmodeself
+ verbs += /client/proc/togglebuildmodeself
verbs += /client/proc/dsay
verbs += /client/proc/admin_play
diff --git a/code/modules/admin/new/admin_verbs.dm b/code/modules/admin/new/admin_verbs.dm
index 37bd024ec4c..0669c69e1a8 100644
--- a/code/modules/admin/new/admin_verbs.dm
+++ b/code/modules/admin/new/admin_verbs.dm
@@ -413,7 +413,7 @@
//verbs -= /client/proc/cmd_admin_prison --Merged with player panel
//verbs -= /obj/admins/proc/unprison --Merged with player panel
//verbs -= /client/proc/cmd_switch_radio --removed because tcommsat is staying
- //verbs -= /client/proc/togglebuildmodeself --removed due to runtimes
+ verbs -= /client/proc/togglebuildmodeself
return
@@ -611,14 +611,13 @@
for (var/mob/V in hearers(O))
V.show_message(message, 2)
-////I'm removing buildmode because it's shitty and runtimes a lot. -Pete
-/*
+
/client/proc/togglebuildmodeself()
set name = "Toggle Build Mode Self"
set category = "Special Verbs"
if(src.mob)
togglebuildmode(src.mob)
-*/
+
/client/proc/toggleadminhelpsound()
set name = "Toggle Adminhelp Sound"
@@ -765,7 +764,7 @@
//verbs += /client/proc/cmd_modify_object_variables --merged with view vairiables
verbs += /client/proc/Jump
verbs += /client/proc/jumptoturf
-// verbs += /client/proc/togglebuildmodeself
+ verbs += /client/proc/togglebuildmodeself
verbs += /client/proc/dsay
verbs += /client/proc/admin_play
diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm
index f101b09874a..5c6da539353 100644
--- a/code/modules/mob/living/carbon/human/emote.dm
+++ b/code/modules/mob/living/carbon/human/emote.dm
@@ -467,6 +467,7 @@
if (message)
log_emote("[name]/[key] : [message]")
+/* Hearing gasp and such every five seconds is not good emotes were not global for a reason.
for(var/mob/M in world)
if (!M.client)
continue //skip monkeys and leavers
@@ -474,7 +475,7 @@
continue
if(M.stat == 2 && M.client.ghost_ears && !(M in viewers(src,null)))
M.show_message(message)
-
+*/
if (m_type & 1)
for (var/mob/O in viewers(src, null))
diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm
index 8397a0e11c1..0c999617e95 100644
--- a/code/modules/mob/living/carbon/human/examine.dm
+++ b/code/modules/mob/living/carbon/human/examine.dm
@@ -1,5 +1,5 @@
/mob/living/carbon/human/examine()
- set src in oview()
+ set src in view()
if(!usr || !src) return
if(((usr.sdisabilities & 1) || usr.blinded || usr.stat) && !(istype(usr,/mob/dead/observer/)))
diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm
index e88b5d0756a..ab9e69eeaef 100644
--- a/code/modules/mob/living/carbon/human/life.dm
+++ b/code/modules/mob/living/carbon/human/life.dm
@@ -719,7 +719,7 @@
if(paralysis <= 0)
Paralyse(2)
if (prob(10) && health && !hal_crit) spawn(0) emote("snore")
- //sleeping--
+ sleeping--
if(resting)
if(weakened <= 0)
diff --git a/code/modules/mob/living/carbon/human/poop.dm b/code/modules/mob/living/carbon/human/poop.dm
deleted file mode 100644
index f28721207ed..00000000000
--- a/code/modules/mob/living/carbon/human/poop.dm
+++ /dev/null
@@ -1 +0,0 @@
-//APRIL FOOLS!! :3
\ No newline at end of file
diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index 29cfa641fdb..4b6f4665d60 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -1145,28 +1145,4 @@ note dizziness decrements automatically in the mob's Life() proc.
for(var/file in args)
src << browse_rsc(file)
return 1
- return 0
-
-
-
-
-
-/mob/living/verb/Examine_OOC()
- set name = "Examine Meta-Info (OOC)"
- set category = "OOC"
- set src in view()
-
-
- if(config.allow_Metadata)
-
- usr << "[src]'s Metainfo:"
- if(src.storedpreferences)
- usr << "[src]'s OOC Notes: [src.storedpreferences.ERP_Notes]"
-
- else
- usr << "[src] does not have any stored infomation!"
-
- else
- usr << "OOC Metadata is not supported by this server!"
-
- return
\ No newline at end of file
+ return 0
\ No newline at end of file
diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm
index 902de94967e..8e687f04ae7 100644
--- a/code/modules/mob/mob_defines.dm
+++ b/code/modules/mob/mob_defines.dm
@@ -271,7 +271,4 @@ the mob is also allowed to move without any sort of restriction. For instance, i
var/digitalcamo = 0 // Can they be tracked by the AI?
- // Note: Some mob ERP defines are located in mob_ERP.dm
-
-
var/datum/preferences/storedpreferences = null
\ No newline at end of file
diff --git a/code/modules/mob/new_player/preferences.dm b/code/modules/mob/new_player/preferences.dm
index 33eca64b064..9df82c6f570 100644
--- a/code/modules/mob/new_player/preferences.dm
+++ b/code/modules/mob/new_player/preferences.dm
@@ -114,11 +114,6 @@ datum/preferences
job_engsec_low = 0
- // Naughty.
- ERP_Notes = ""
-
-
-
New()
hair_style = new/datum/sprite_accessory/hair/short
facial_hair_style = new/datum/sprite_accessory/facial_hair/shaved
@@ -145,11 +140,6 @@ datum/preferences
dat += "Play admin midis: [midis == 1 ? "Yes" : "No"]
"
dat += "Ghost ears: [ghost_ears == 0 ? "Nearest Creatures" : "All Speech"]
"
-
- if(config.allow_Metadata)
- dat += "OOC Notes/ERP Preferences: Edit
"
-
-
if((user.client) && (user.client.holder) && (user.client.holder.rank) && (user.client.holder.level >= 5))
dat += "
| __ |