From 72b335f8b015a1607256d08fd63bb8851955bff1 Mon Sep 17 00:00:00 2001 From: Kyep <16434066+Kyep@users.noreply.github.com> Date: Mon, 24 Dec 2018 12:13:29 +0000 Subject: [PATCH] fixes kick direction --- .../mob/living/simple_animal/hostile/retaliate/kangaroo.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/kangaroo.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/kangaroo.dm index a87975b2320..c149f145d41 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/kangaroo.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/kangaroo.dm @@ -44,7 +44,7 @@ var/mob/living/L = target if(istype(L)) - var/rookick_dir = get_dir(L, src) + var/rookick_dir = get_dir(src, L) var/turf/general_direction = get_edge_target_turf(L, rookick_dir) L.visible_message("[L] is kicked hard!", "The kangaroo kick sends you flying mate!") L.throw_at(general_direction, 10, 2)