Fix the expansion will be unregistered on placeholderapi reload

This commit is contained in:
Yurinann 2022-11-20 18:20:56 +08:00
parent 8d1430f621
commit b7f257c36d

View File

@ -46,4 +46,12 @@ public class PlayerBalancerPlaceholderExpansion extends PlaceholderExpansion {
public String getVersion() {
return "bundled";
}
/**
* This is required or else PlaceholderAPI will unregister the Expansion on reload
*/
@Override
public boolean persist() {
return true;
}
}