Fixed global yaw bug (thanks Sofar)

This commit is contained in:
TenPlus1 2016-04-18 20:54:02 +01:00
parent a80b8dc3b0
commit 30e1157392
1 changed files with 1 additions and 1 deletions

View File

@ -1206,7 +1206,7 @@ local do_states = function(self, dtime)
-- otherwise randomly turn
elseif math.random(1, 100) <= 30 then
yaw = (math.random(0, 360) - 180) / 180 * pi
local yaw = (math.random(0, 360) - 180) / 180 * pi
self.object:setyaw(yaw)
end