Attempt to fix the NPE error when loading the old JailPayCurrency
This commit is contained in:
parent
ef5dfe3815
commit
7db5fe9da5
@ -406,10 +406,13 @@ public class LegacyManager {
|
|||||||
}
|
}
|
||||||
case JailPayCurrency:
|
case JailPayCurrency:
|
||||||
if(global.contains(s.getString())) {
|
if(global.contains(s.getString())) {
|
||||||
c.set(Settings.JAILPAYITEM.getPath(), Material.getMaterial(OldSettings.getGlobalInt(global, s)).toString().toLowerCase());
|
Material mat = Material.getMaterial(OldSettings.getGlobalInt(global, s));
|
||||||
|
if(mat != null) {
|
||||||
|
c.set(Settings.JAILPAYITEM.getPath(), mat.toString().toLowerCase());
|
||||||
pl.debug(Settings.JAILPAYPRICEINFINITE.getPath() + " <-- " + s.getString());
|
pl.debug(Settings.JAILPAYPRICEINFINITE.getPath() + " <-- " + s.getString());
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user