Set the initial last change of ItemInstance to 3.

This commit is contained in:
MobiusDevelopment 2019-03-30 23:28:11 +00:00
parent 621d5e0298
commit 8a0926b431

View File

@ -111,7 +111,7 @@ public final class ItemInstance extends WorldObject
public static final int ADDED = 1;
public static final int REMOVED = 3;
public static final int MODIFIED = 2;
private int _lastChange = 2; // 1 ??, 2 modified, 3 removed
private int _lastChange = 3; // 1 ??, 2 modified, 3 removed
private boolean _existsInDb; // if a record exists in DB.
private boolean _storedInDb; // if DB data is up-to-date.
private ScheduledFuture<?> itemLootShedule = null;