Simple Animals now no longer move while facing south all the time.

Fucking weirdo's

resolves #7396 for simple animals.
This commit is contained in:
ccomp5950
2014-12-22 21:38:52 -05:00
parent 66ac2d6e05
commit 0a63932d48

View File

@@ -95,7 +95,10 @@
turns_since_move++
if(turns_since_move >= turns_per_move)
if(!(stop_automated_movement_when_pulled && pulledby)) //Soma animals don't move when pulled
Move(get_step(src,pick(cardinal)))
/var/moving_to = 0 // otherwise it always picks 4, fuck if I know. Did I mention fuck BYOND
moving_to = pick(cardinal)
dir = moving_to //How about we turn them the direction they are moving, yay.
Move(get_step(src,moving_to))
turns_since_move = 0
//Speaking
@@ -371,4 +374,4 @@
message = capitalize(trim_left(message))
..(message, null, verb)
..(message, null, verb)