Fix #5249
Fix #5271
Fix icon bug for beacons
This commit is contained in:
clusterfack
2015-07-07 10:55:28 -05:00
parent 436e36750b
commit 99a44d3779
2 changed files with 2 additions and 1 deletions

View File

@@ -324,7 +324,7 @@ its easier to just keep the beam vertical.
/atom/proc/examine(mob/user, var/size = "")
//This reformat names to get a/an properly working on item descriptions when they are bloody
var/f_name = "\a [src]."
if(src.blood_DNA)
if(src.blood_DNA && src.blood_DNA.len)
if(gender == PLURAL)
f_name = "some "
else

View File

@@ -3,6 +3,7 @@ var/global/list/obj/item/beacon/beacons = list()
/obj/item/beacon
name = "Tracking Beacon"
desc = "A beacon used by a teleporter."
icon = 'icons/obj/radio.dmi'
icon_state = "beacon"
item_state = "signaler"
var/code = "electronic"