Merge pull request #14 from GoalieGuy6/patch-1

Made transcation records able to last forever
This commit is contained in:
Acrobot 2012-02-22 06:12:02 -08:00
commit 7c93fba155
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();