Skip to content

Commit

Permalink
Fix Naked Nest 0 Breach[DONE] (#2371)
Browse files Browse the repository at this point in the history
Fix Naked Nest 0 Breach

Naked Nest was missing some code that would allow their qubolith to be restored.
  • Loading branch information
InsightfulParasite authored Aug 7, 2024
1 parent 765ed8a commit 77d4886
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@
return
if(serpentsnested <= 2)
serpentsnested = serpentsnested + 1
return
return ..()

/mob/living/simple_animal/hostile/abnormality/naked_nest/death(gibbed)
for(var/atom/movable/AM in src)
AM.forceMove(get_turf(src))
if(serpentsnested > 0)
var/mob/living/simple_animal/hostile/naked_nest_serpent/S = new(get_turf(src))
S.Hide()
..()
return ..()

/mob/living/simple_animal/hostile/abnormality/naked_nest/Move()
return FALSE
Expand Down Expand Up @@ -298,7 +298,7 @@
/mob/living/simple_animal/hostile/naked_nested/gib()
for(var/atom/movable/AM in src) //morph code
AM.forceMove(loc)
..()
return ..()

/mob/living/simple_animal/hostile/naked_nested/proc/Nest()
var/mob/living/simple_animal/hostile/abnormality/naked_nest/N = new(get_turf(src))
Expand Down

0 comments on commit 77d4886

Please sign in to comment.