fixed kick history stack direction
This commit is contained in:
parent
02d09f2843
commit
5b8191e57c
@ -217,7 +217,7 @@ public class Ball
|
||||
|
||||
//Record
|
||||
_lastKickTeam = _host.GetTeam(player);
|
||||
_kickHistory.add(new KickLog(player, _lastKickTeam));
|
||||
_kickHistory.add(0, new KickLog(player, _lastKickTeam));
|
||||
|
||||
//Ignore Rebound
|
||||
_ignoreReboundForTick = true;
|
||||
@ -409,7 +409,7 @@ public class Ball
|
||||
|
||||
//Record
|
||||
_lastKickTeam = _host.GetTeam(player);
|
||||
_kickHistory.add(new KickLog(player, _lastKickTeam));
|
||||
_kickHistory.add(0, new KickLog(player, _lastKickTeam));
|
||||
|
||||
//Ignore Rebound
|
||||
_ignoreReboundForTick = true;
|
||||
|
Loading…
Reference in New Issue
Block a user