Only try to load the previous gamemode if it isn't null.

This commit is contained in:
graywolf336 2013-12-25 23:01:56 -06:00
parent aaa286fbdd
commit 69b7981914

View File

@ -219,7 +219,8 @@ public class JailIO {
flat.set(cNode + "prisoner.offlinePending", p.isOfflinePending());
flat.set(cNode + "prisoner.reason", p.getReason());
flat.set(cNode + "prisoner.previousLocation", p.getPreviousLocationString());
flat.set(cNode + "prisoner.previousGameMode", p.getPreviousGameMode().toString());
if(p.getPreviousGameMode() != null)
flat.set(cNode + "prisoner.previousGameMode", p.getPreviousGameMode().toString());
}
}
@ -230,7 +231,8 @@ public class JailIO {
flat.set(pNode + "offlinePending", p.isOfflinePending());
flat.set(pNode + "reason", p.getReason());
flat.set(pNode + "previousLocation", p.getPreviousLocationString());
flat.set(pNode + "previousGameMode", p.getPreviousGameMode().toString());
if(p.getPreviousGameMode() != null)
flat.set(pNode + "previousGameMode", p.getPreviousGameMode().toString());
}
try {