/obj/item/projectile --> /obj/projectile (#30411)

* yers

* vars

* map changes

* some comments (clearly not stolen from items)

* fix component

* summary
This commit is contained in:
kyunkyunkyun
2025-11-12 10:23:20 +00:00
committed by GitHub
parent e92a45369a
commit f96b26b75a
169 changed files with 858 additions and 851 deletions
+2 -2
View File
@@ -75,8 +75,8 @@ GLOBAL_LIST_EMPTY(blob_minions)
/obj/structure/blob/blob_act(obj/structure/blob/B)
return
/obj/structure/blob/bullet_act(obj/item/projectile/P)
if(istype(P, /obj/item/projectile/kinetic))
/obj/structure/blob/bullet_act(obj/projectile/P)
if(istype(P, /obj/projectile/kinetic))
P.damage /= 2
return ..()
+1 -1
View File
@@ -225,7 +225,7 @@
. = ..()
SEND_SIGNAL(src, COMSIG_SPAWNER_SET_TARGET, user)
/obj/structure/spawner/nether/demon_incursion/bullet_act(obj/item/projectile/P)
/obj/structure/spawner/nether/demon_incursion/bullet_act(obj/projectile/P)
. = ..()
if(P.firer)
SEND_SIGNAL(src, COMSIG_SPAWNER_SET_TARGET, P.firer)