Files
foundation/foundation-chaos/src/main/kotlin/gay/pizza/foundation/chaos/modules/ChaosModules.kt

14 lines
302 B
Kotlin
Raw Normal View History

2023-01-28 00:21:14 -08:00
package gay.pizza.foundation.chaos.modules
import org.bukkit.plugin.Plugin
object ChaosModules {
fun all(plugin: Plugin) = listOf(
NearestPlayerEntitySpawn(plugin),
2023-01-28 19:01:20 -08:00
TeleportAllEntitiesNearestPlayer(plugin),
KillRandomPlayer(plugin),
TntAllPlayers(plugin),
MegaTnt(plugin)
2023-01-28 00:21:14 -08:00
)
}