9
0
mirror of https://github.com/Auxilor/EcoMobs.git synced 2025-12-21 16:09:24 +00:00

Fixed spawn totems

This commit is contained in:
Auxilor
2022-02-07 16:04:25 +00:00
parent 17705e9fdb
commit 1ffedfcb2e

View File

@@ -135,9 +135,9 @@ class EcoBoss(
}
SpawnTotem(
Material.getMaterial(config.getString("spawn.totem.top")) ?: return@run null,
Material.getMaterial(config.getString("spawn.totem.middle")) ?: return@run null,
Material.getMaterial(config.getString("spawn.totem.bottom")) ?: return@run null
Material.getMaterial(config.getString("spawn.totem.top").uppercase()) ?: return@run null,
Material.getMaterial(config.getString("spawn.totem.middle").uppercase()) ?: return@run null,
Material.getMaterial(config.getString("spawn.totem.bottom").uppercase()) ?: return@run null
)
}