diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/boosters/boosters/Booster.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/boosters/boosters/Booster.kt index 7ad1c6b..d4d4bb1 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/boosters/boosters/Booster.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/boosters/boosters/Booster.kt @@ -151,7 +151,9 @@ class Booster( plugin, "${id}_name", ) { - active?.booster.name ?: "" + val active = this.active + + active?.booster?.name ?: "" } )