Skip to content

Commit

Permalink
fix typo in config
Browse files Browse the repository at this point in the history
  • Loading branch information
UpcraftLP committed Apr 28, 2022
1 parent cc266ed commit 5b1d63c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public boolean isAcceptableItem(ItemStack stack) {

@Override
public boolean isTreasure() {
return Soulbound.CONFIG.get().soulboundIsTresureEnchantment;
return Soulbound.CONFIG.get().soulboundIsTreasureEnchantment;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class SoulboundConfig implements ConfigData {

public double soulboundPreservationRate = 1.0F;
public double soulboundDropChance = 0.0F;
public boolean soulboundIsTresureEnchantment = false;
public boolean soulboundIsTreasureEnchantment = false;

@Override
public void validatePostLoad() throws ValidationException {
Expand Down

0 comments on commit 5b1d63c

Please sign in to comment.