Fixes scythes cutting kudzu (#2185)

This commit is contained in:
CitadelStationBot
2017-07-29 21:50:24 -05:00
committed by kevinz000
parent d07b21a9d8
commit 2342c8f2bc
3 changed files with 17 additions and 12 deletions

View File

@@ -645,7 +645,7 @@
var/turf/user_turf = get_turf(user)
var/dir_to_target = get_dir(user_turf, get_turf(target))
swiping = TRUE
var/static/list/cleaving_saw_cleave_angles = list(0, -90, 90) //so that the animation animates towards the target clicked and not towards a side target
var/static/list/cleaving_saw_cleave_angles = list(0, -45, 45) //so that the animation animates towards the target clicked and not towards a side target
for(var/i in cleaving_saw_cleave_angles)
var/turf/T = get_step(user_turf, turn(dir_to_target, i))
for(var/mob/living/L in T)