-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:
giacomand@gmail.com
2012-09-16 05:43:27 +00:00
parent d85e161c4d
commit 33c738de3e
4 changed files with 7 additions and 5 deletions

View File

@@ -311,6 +311,8 @@ Turf and target are seperate in case you want to teleport some distance from a t
newname = reject_bad_name(newname,allow_numbers) //returns null if the name doesn't meet some basic requirements. Tidies up a few other things like bad-characters.
for(var/mob/living/M in player_list)
if(M == src)
continue
if(!newname || M.real_name == newname)
newname = null
break