mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
Adjustments to alien acid. Aliens should no longer see invalid targets as one of their acid options when using the verb. Right clicking should give the invalid target message when appropriate.
Made a bunch of other things acid proof. Bullets, lasers, runes, etc. Aliens should no longer emote as male when they are gender neuter. Or maybe plural, who knows. Tweaked respawn character verb. Hopefully it'll work on the live server now. Minor Strike Team fix. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@689 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -290,9 +290,9 @@ They spawn as an assistant but there is no announcement. /N */
|
||||
|
||||
var/GKEY = input
|
||||
var/GNAME = "none"
|
||||
var/mob/dead/observer/GDEL //to properly delete the mob later on.
|
||||
var/mob/dead/observer/GDEL //To properly delete the mob later on.
|
||||
for(var/mob/dead/observer/G in world)
|
||||
if(G.key==input)
|
||||
if(G.key==input||GKEY)
|
||||
GDEL = G
|
||||
GNAME = G.real_name
|
||||
else
|
||||
@@ -321,7 +321,7 @@ They spawn as an assistant but there is no announcement. /N */
|
||||
|
||||
new_character.loc = spawn_here
|
||||
new_character.real_name = GNAME
|
||||
message_admins("\blue [key_name_admin(usr)] has respawned [GKEY] as [new_character.name].", 1) //Here so it doesn't null name if an admin re-spawns themselves.
|
||||
message_admins("\blue [key_name_admin(usr)] has respawned [GKEY] as [new_character.name].", 1) //Here so it doesn't null client if an admin re-spawns themselves.
|
||||
new_character.key = GKEY
|
||||
// preferences.copy_to(new_character)
|
||||
new_character.dna.ready_dna(new_character)
|
||||
|
||||
Reference in New Issue
Block a user