Skip to content

Commit

Permalink
bugfix: magic morph cant in magic (ss220-space#4019)
Browse files Browse the repository at this point in the history
  • Loading branch information
ROdenFL authored and Etrnlmelancholy committed Jan 3, 2024
1 parent 9a249d8 commit bb8ede0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions code/game/gamemodes/miniantags/morph/morph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,12 @@

/mob/living/simple_animal/hostile/morph/wizard/New()
. = ..()
AddSpell(new /obj/effect/proc_holder/spell/smoke)
AddSpell(new /obj/effect/proc_holder/spell/forcewall)
var/obj/effect/proc_holder/spell/smoke/smoke = new
var/obj/effect/proc_holder/spell/forcewall/forcewall = new
smoke.human_req = FALSE
forcewall.human_req = FALSE
AddSpell(smoke)
AddSpell(forcewall)


/mob/living/simple_animal/hostile/morph/proc/try_eat(atom/movable/item)
Expand Down

0 comments on commit bb8ede0

Please sign in to comment.