Fix aliens double attacking, tank examining and ATM security level 0 interaction

This commit is contained in:
Markolie
2016-10-21 17:21:23 +02:00
parent e853b66747
commit 7173a8fe9f
3 changed files with 52 additions and 113 deletions
@@ -78,13 +78,12 @@
/obj/item/weapon/tank/examine(mob/user)
if(!..(user, 0))
return
var/obj/icon = src
if(istype(loc, /obj/item/assembly))
icon = loc
if(!in_range(src, user))
if(icon == src)
to_chat(user, "<span class='notice'>It's \a [bicon(icon)][src]! If you want any more information you'll need to get closer.</span>")
return
var/celsius_temperature = air_contents.temperature-T0C
var/descriptive
@@ -102,7 +101,7 @@
else
descriptive = "furiously hot"
to_chat(user, "\blue \The [bicon(icon)][src] feels [descriptive]")
to_chat(user, "<span class='notice'>\The [bicon(icon)][src] feels [descriptive]</span>")
return