From 55c418b61ee2f6dc418926ae10449b71ac8dd46a Mon Sep 17 00:00:00 2001 From: Nicaragua Date: Tue, 26 Feb 2019 16:35:12 -0300 Subject: [PATCH] removed null --- code/modules/mob/living/simple_animal/bot/bot.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/bot.dm b/code/modules/mob/living/simple_animal/bot/bot.dm index d8fd3f7ca09..a0b6652f883 100644 --- a/code/modules/mob/living/simple_animal/bot/bot.dm +++ b/code/modules/mob/living/simple_animal/bot/bot.dm @@ -1109,5 +1109,4 @@ Pass a positive integer as an argument to override a bot's default speed. path.Cut(1, 2) /mob/living/simple_animal/bot/proc/drop_part(obj/item/drop_item, dropzone) - new drop_item(dropzone) - drop_item = null \ No newline at end of file + new drop_item(dropzone) \ No newline at end of file