TG: Removes the ERP system because it has bugs in it/generates runtimes and I don't

feel like maintaining/expanding it.  If any of the other coders want to, they
can re-add it.
Converts the metadata system into its own thing
Makes ghost_ears hear emotes as well as a test.
 Revision: r3392
Author: 	 VivianFoxfoot
This commit is contained in:
Ren Erthilo
2012-05-01 19:41:36 +01:00
parent 31dfbf7fc6
commit 4077f00143
3 changed files with 25 additions and 1 deletions
@@ -509,7 +509,23 @@
else
src << "\blue Unusable emote '[act]'. Say *help for a list."
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
if (istype(M, /mob/new_player))
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))
O.show_message(message, m_type)
@@ -1,5 +1,5 @@
/mob/living/carbon/human/examine()
set src in oview()
set src in view()
if(!usr || !src) return
if(((usr.disabilities & 128) || usr.blinded || usr.stat) && !(istype(usr,/mob/dead/observer/)))