From 44667ae1b631c60ff003bbba8841cf435cb5fe03 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Thu, 7 Jan 2021 16:46:42 +0000 Subject: [PATCH] edits --- code/modules/mob/living/simple_animal/hostile/bread.dm | 8 +++++--- code/modules/mob/living/simple_animal/simple_animal.dm | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/bread.dm b/code/modules/mob/living/simple_animal/hostile/bread.dm index bb65dc0b7a..317827028d 100644 --- a/code/modules/mob/living/simple_animal/hostile/bread.dm +++ b/code/modules/mob/living/simple_animal/hostile/bread.dm @@ -1,11 +1,13 @@ +//funny reference to the video 'Expiration Date' + /mob/living/simple_animal/hostile/bread name = "tumor bread" desc = "I have done nothing but teleport bread for three days." icon_state = "tumorbread" health = 1 maxHealth = 1 - turns_per_move = 5 //this isn't player speed =| - speed = 2 //this is player speed + turns_per_move = 5 //this isn't player speed =| + speed = 2 //this is player speed melee_damage_lower = 1 melee_damage_upper = 2 obj_damage = 0 @@ -64,4 +66,4 @@ return /mob/living/simple_animal/hostile/bread/start_pulling() - return FALSE //No. + return FALSE diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index 5fa6a0c22d..e9b97b3597 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -354,7 +354,7 @@ /mob/living/simple_animal/proc/drop_loot() if(loot.len) for(var/i in loot) - new i(loc) + new i(loc, dir = src.dir) /mob/living/simple_animal/death(gibbed) movement_type &= ~FLYING