05-09-2014, 05:17 PM
I'm hoping it's simply a divide my 0 error in the script and not a DLL bug. I can fix the former; the latter is going to take some work.
In the mean time, here is a fix for 'backwards events.'
changeto
In the mean time, here is a fix for 'backwards events.'
change
Code:
current_direction = directions_list[(directions_list.index(current_direction) +
(($game_system.fple2_angle + 45) % 360) / 90) % 4]
Code:
current_direction = directions_list[((directions_list.index(current_direction) +
(($game_system.fple2_angle + 45) % 360) / 90) + 2) % 4]