mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Fix for alien queen names.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4092 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -5,8 +5,10 @@
|
|||||||
|
|
||||||
//there should only be one queen
|
//there should only be one queen
|
||||||
for(var/mob/living/carbon/alien/humanoid/queen/Q in world)
|
for(var/mob/living/carbon/alien/humanoid/queen/Q in world)
|
||||||
if(Q.stat != DEAD)
|
if(Q == src) continue
|
||||||
name = "alien princess ([rand(1, 1000)])" //if this is too cutesy feel free to change it/remove it.
|
if(Q.stat == DEAD) continue
|
||||||
|
if(Q.client)
|
||||||
|
name = "alien princess ([rand(1, 999)])" //if this is too cutesy feel free to change it/remove it.
|
||||||
break
|
break
|
||||||
|
|
||||||
real_name = src.name
|
real_name = src.name
|
||||||
|
|||||||
Reference in New Issue
Block a user