Fixes merge problems
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good

This commit is contained in:
2025-09-06 15:16:00 +02:00
parent bb46967892
commit 967791d275
9 changed files with 23 additions and 18 deletions

View File

@@ -72,7 +72,7 @@ public record ActionCost(double monetaryCost, int expCost, @Nullable ItemStack i
/**
* Displays this action cost as a string
*
*
* @param player <p>The player to calculate the cost for</p>
* @return <p>The string representation of this action cost</p>
*/
@@ -196,7 +196,7 @@ public record ActionCost(double monetaryCost, int expCost, @Nullable ItemStack i
continue;
}
}
output.put(entry.getKey(), (Integer) entry.getValue().getAmount());
output.put(entry.getKey(), entry.getValue().getAmount());
}
return output;