diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index f8536354cb5..8e9b478382a 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -312,9 +312,8 @@ GLOBAL_LIST_EMPTY(safes) /obj/structure/safe/Destroy() GLOB.safes -= src - if(drill?.soundloop) - drill.soundloop.stop() - ..() + drill?.soundloop?.stop() + return ..() /obj/structure/safe/process() if(drill_timer)