mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 20:47:10 +01:00
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:
@@ -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/)))
|
||||
|
||||
Reference in New Issue
Block a user