Skip to content

Commit

Permalink
Initialize should return.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mechoid committed Sep 4, 2023
1 parent afb892e commit 34201cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/exosuits/exosuit_wreckage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
if(exosuit.remove_system(hardpoint))
thing.forceMove(src)

..()
return ..()

/obj/structure/exosuit_wreckage/powerloader/Initialize(var/newloc)
var/mob/living/exosuit/Exo = new /mob/living/exosuit/premade/powerloader(src)
..(newloc, Exo, FALSE)
return ..(newloc, Exo, FALSE)

/obj/structure/exosuit_wreckage/attack_hand(var/mob/user)
if(contents.len)
Expand Down

0 comments on commit 34201cd

Please sign in to comment.