mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-27 23:28:10 +01:00
Removes devices
This commit is contained in:
@@ -102,6 +102,8 @@
|
||||
name = "alien object"
|
||||
desc = "You have no idea what this thing does."
|
||||
icon = 'icons/obj/device.dmi'
|
||||
pickup_sound = 'sound/items/pickup/device.ogg'
|
||||
drop_sound = 'sound/items/drop/device.ogg'
|
||||
icon_state = "health"
|
||||
w_class = ITEMSIZE_SMALL
|
||||
var/static/list/possible_states = list("health", "spider", "slime", "emp", "species", "egg", "vent", "mindshock", "viral", "gland")
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
icon_state = "ai"
|
||||
|
||||
/obj/structure/prop/fake_ai/attackby(obj/O, mob/user)
|
||||
if(istype(O, /obj/item/device/aicard)) // People trying to card the fake AI will get told its impossible.
|
||||
if(istype(O, /obj/item/aicard)) // People trying to card the fake AI will get told its impossible.
|
||||
to_chat(user, span("warning", "This core does not appear to have a suitable port to use \the [O] on..."))
|
||||
return TRUE
|
||||
return ..()
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
to_chat(user, "<span class='notice'>\The [src] does not respond to your touch.</span>")
|
||||
|
||||
/obj/machinery/door/blast/puzzle/attackby(obj/item/C as obj, mob/user as mob)
|
||||
if(istype(C, /obj/item/weapon))
|
||||
if(istype(C))
|
||||
if(C.pry == 1 && (user.a_intent != I_HURT || (stat & BROKEN)))
|
||||
if(istype(C,/obj/item/material/twohanded/fireaxe))
|
||||
var/obj/item/material/twohanded/fireaxe/F = C
|
||||
|
||||
Reference in New Issue
Block a user