mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
-Fixed an issue where you would compare your name with yourself to see if it was available.
-Fixed an issue with the Upgrade Camera malf module. -Fixed an issue with HTML codes in whisper. -Ghost ears and eyes default to 0. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4700 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
//Lallander was here
|
||||
/mob/living/carbon/human/whisper(message as text)
|
||||
message = trim(copytext(sanitize(message), 1, MAX_MESSAGE_LEN))
|
||||
message = trim(copytext(strip_html_simple(message), 1, MAX_MESSAGE_LEN))
|
||||
|
||||
if (!message || silent || miming)
|
||||
return
|
||||
|
||||
@@ -401,7 +401,7 @@ var/list/slot_equipment_priority = list( \
|
||||
src << browse('html/changelog.html', "window=changes;size=675x650")
|
||||
client.changes = 1
|
||||
|
||||
/client/var/ghost_ears = 1
|
||||
/client/var/ghost_ears = 0
|
||||
/client/verb/toggle_ghost_ears()
|
||||
set name = "Ghost ears"
|
||||
set category = "OOC"
|
||||
@@ -412,7 +412,7 @@ var/list/slot_equipment_priority = list( \
|
||||
else
|
||||
usr << "\blue Now you hear speech only from nearest creatures."
|
||||
|
||||
/client/var/ghost_sight = 1
|
||||
/client/var/ghost_sight = 0
|
||||
/client/verb/toggle_ghost_sight()
|
||||
set name = "Ghost sight"
|
||||
set category = "OOC"
|
||||
|
||||
Reference in New Issue
Block a user