From 29a59cc06d1a7eb1671ef974af953c55c7c6d3cb Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Wed, 4 Apr 2018 07:04:23 -0400 Subject: [PATCH] modular computer/software destroy fix --- code/modules/modular_computers/hardware/hard_drive.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/modular_computers/hardware/hard_drive.dm b/code/modules/modular_computers/hardware/hard_drive.dm index caf0406336b..9339f3d3c5d 100644 --- a/code/modules/modular_computers/hardware/hard_drive.dm +++ b/code/modules/modular_computers/hardware/hard_drive.dm @@ -65,7 +65,6 @@ if(F in stored_files) stored_files -= F - qdel(F) recalculate_size() return 1 else @@ -119,7 +118,6 @@ return null /obj/item/weapon/computer_hardware/hard_drive/Destroy() - QDEL_LIST(stored_files) stored_files = null return ..()