From d8a2536b63c72c8807e419f70c2107e5d0c9cc0a Mon Sep 17 00:00:00 2001 From: OmerBenGera Date: Fri, 14 Oct 2022 18:54:52 +0300 Subject: [PATCH] Fixed debug message of SET_BONUS_LEVEL showing incorrect method name --- .../java/com/bgsoftware/superiorskyblock/island/SIsland.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/bgsoftware/superiorskyblock/island/SIsland.java b/src/main/java/com/bgsoftware/superiorskyblock/island/SIsland.java index 342c88e1e..58cb541a6 100644 --- a/src/main/java/com/bgsoftware/superiorskyblock/island/SIsland.java +++ b/src/main/java/com/bgsoftware/superiorskyblock/island/SIsland.java @@ -2058,7 +2058,7 @@ public BigDecimal getBonusLevel() { public void setBonusLevel(BigDecimal bonusLevel) { Preconditions.checkNotNull(bonusLevel, "bonusLevel parameter cannot be null."); - Log.debug(Debug.SET_BONUS_LEVEL, "SIsland", "setBonusWorth", owner.getName(), bonusLevel); + Log.debug(Debug.SET_BONUS_LEVEL, "SIsland", "setBonusLevel", owner.getName(), bonusLevel); this.bonusLevel.set(bonusLevel);