Changes configuration values to lower camelcase

Also fixes some grammar mistakes related to the word reforge
This commit is contained in:
2022-10-03 12:39:15 +02:00
parent 9ffd788e29
commit 2489cac8db
10 changed files with 98 additions and 97 deletions

View File

@ -44,7 +44,7 @@ public class EconomyManager {
* Gets whether the given player can pay for re-forging their held item
*
* @param player <p>The player holding an item</p>
* @return <p>Whether the player can pay for the re-forge</p>
* @return <p>Whether the player can pay for the reforge</p>
*/
public static boolean canPay(Player player) {
return economy.getBalance(player) - getHeldItemCost(player) >= 0;
@ -62,7 +62,7 @@ public class EconomyManager {
}
/**
* Withdraws the re-forge cost from the given player
* Withdraws the reforging cost from the given player
*
* <p>The cost is automatically calculated from the item in the player's main hand.</p>
*