Made transcation records able to last forever

This commit is contained in:
GoalieGuy6 2012-02-21 23:55:04 -05:00
parent a49d51ce97
commit 28197e4d6f
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ public class Queue implements Runnable {
}
public void run() {
deleteOld();
if (Config.getInteger(Property.RECORD_TIME_TO_LIVE) != -1)
deleteOld();
ChestShop.getDB().save(queue);
queue.clear();