Skip to content

Commit

Permalink
Fixed issue where kings would have their pay set at 0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhmagic committed Sep 7, 2023
1 parent f078c0d commit f0998d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.palmergames.bukkit.towny.utils.MetaDataUtil;

public class KingPayMetaDataController {
private static IntegerDataField payIDF = new IntegerDataField("TownyPaySetPay", 0);
private static IntegerDataField payIDF = new IntegerDataField("TownyPaySet", 0);
private static BooleanDataField toggleBDF = new BooleanDataField("TownyPayToggle", true);

public static boolean hasPayData(Nation nation){
Expand Down

0 comments on commit f0998d1

Please sign in to comment.