mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
Fix aliens double attacking, tank examining and ATM security level 0 interaction
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user