Update Booster.kt

Fixed unsafe call to "active"
This commit is contained in:
Nate R
2022-06-07 20:31:55 -05:00
committed by GitHub
parent 4b7cd865cb
commit 51efbd3dad
@@ -151,7 +151,9 @@ class Booster(
plugin, plugin,
"${id}_name", "${id}_name",
) { ) {
active?.booster.name ?: "" val active = this.active
active?.booster?.name ?: ""
} }
) )