mirror of
https://github.com/Auxilor/EcoMobs.git
synced 2025-12-21 07:59:28 +00:00
Fixed spawn totems
This commit is contained in:
@@ -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
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user