Only save the previous position as well if it is null.
This commit is contained in:
parent
69b7981914
commit
23e7aa15a3
@ -218,7 +218,8 @@ public class JailIO {
|
||||
flat.set(cNode + "prisoner.time", p.getRemainingTime());
|
||||
flat.set(cNode + "prisoner.offlinePending", p.isOfflinePending());
|
||||
flat.set(cNode + "prisoner.reason", p.getReason());
|
||||
flat.set(cNode + "prisoner.previousLocation", p.getPreviousLocationString());
|
||||
if(p.getPreviousLocationString() != null)
|
||||
flat.set(cNode + "prisoner.previousLocation", p.getPreviousLocationString());
|
||||
if(p.getPreviousGameMode() != null)
|
||||
flat.set(cNode + "prisoner.previousGameMode", p.getPreviousGameMode().toString());
|
||||
}
|
||||
@ -230,7 +231,8 @@ public class JailIO {
|
||||
flat.set(pNode + "time", p.getRemainingTime());
|
||||
flat.set(pNode + "offlinePending", p.isOfflinePending());
|
||||
flat.set(pNode + "reason", p.getReason());
|
||||
flat.set(pNode + "previousLocation", p.getPreviousLocationString());
|
||||
if(p.getPreviousLocationString() != null)
|
||||
flat.set(pNode + "previousLocation", p.getPreviousLocationString());
|
||||
if(p.getPreviousGameMode() != null)
|
||||
flat.set(pNode + "previousGameMode", p.getPreviousGameMode().toString());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user