Prepend Rollback entries, this ensures the last entries get restored first, instead of last

This commit is contained in:
Jerome van der Sar
2013-05-20 15:40:04 +02:00
parent 6a7e866a53
commit 8d59ba59f4
3 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@ public class TFM_RollbackManager
{
e = new ArrayList<TFM_RollbackEntry>();
}
e.add(new TFM_RollbackEntry(block));
e.add(0, new TFM_RollbackEntry(block));
entries.put(player.getName(), e);
}