mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
11 lines
341 B
Java
11 lines
341 B
Java
|
package com.minelittlepony.unicopia;
|
||
|
|
||
|
import net.minecraft.world.GameRules;
|
||
|
import net.minecraft.world.GameRules.BooleanRule;
|
||
|
|
||
|
public interface UGameRules {
|
||
|
GameRules.Key<BooleanRule> SWAP_TRIBE_ON_DEATH = GameRules.register("swapTribeOnDeath", GameRules.Category.SPAWNING, BooleanRule.create(false));
|
||
|
|
||
|
static void bootstrap() { }
|
||
|
}
|