Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
Removed onlyGolemOwnerFriendly gamerule
Browse files Browse the repository at this point in the history
  • Loading branch information
Max094Reikeb committed Apr 22, 2022
1 parent e212f7e commit 272e4ee
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 223 deletions.
2 changes: 0 additions & 2 deletions src/main/java/net/reikeb/notenoughgamerules/Gamerules.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public class Gamerules {
public static GameRules.Key<GameRules.BooleanRule> KEEP_XP;
public static GameRules.Key<GameRules.IntRule> LIGHTNING_DAMAGE;
public static GameRules.Key<GameRules.IntRule> NATURAL_HUNGER;
public static GameRules.Key<GameRules.BooleanRule> ONLY_GOLEMS_OWNER_FRIENDLY;
public static GameRules.Key<GameRules.IntRule> POISON_HEALTH;
public static GameRules.Key<GameRules.BooleanRule> PVP;
public static GameRules.Key<GameRules.IntRule> RAW_MEAT_HUNGER;
Expand Down Expand Up @@ -62,7 +61,6 @@ public static void setupGamerules() {
KEEP_XP = GameRuleRegistry.register("keepXp", GameRules.Category.PLAYER, GameRuleFactory.createBooleanRule(false));
LIGHTNING_DAMAGE = GameRuleRegistry.register("lightningDamage", GameRules.Category.PLAYER, GameRuleFactory.createIntRule(-1));
NATURAL_HUNGER = GameRuleRegistry.register("naturalHunger", GameRules.Category.PLAYER, GameRuleFactory.createIntRule(-1));
ONLY_GOLEMS_OWNER_FRIENDLY = GameRuleRegistry.register("onlyGolemsOwnerFriendly", GameRules.Category.MOBS, GameRuleFactory.createBooleanRule(false));
POISON_HEALTH = GameRuleRegistry.register("poisonHealth", GameRules.Category.PLAYER, GameRuleFactory.createIntRule(1));
PVP = GameRuleRegistry.register("pvp", GameRules.Category.PLAYER, GameRuleFactory.createBooleanRule(true));
RAW_MEAT_HUNGER = GameRuleRegistry.register("rawMeatHunger", GameRules.Category.PLAYER, GameRuleFactory.createIntRule(30));
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
"gamerule.keepXp.description": "Keeps only player's experience after death",
"gamerule.lightningDamage": "Deal lightning damage",
"gamerule.naturalHunger": "Food degeneration",
"gamerule.onlyGolemsOwnerFriendly": "Iron Golems owner friendly",
"gamerule.onlyGolemsOwnerFriendly.description": "Defines if Iron Golems spawned by a player also attacks other players except its owner",
"gamerule.poisonHealth": "Poison health",
"gamerule.poisonHealth.description": "Number of life points let by poison effect",
"gamerule.pvp": "PVP",
Expand Down
4 changes: 0 additions & 4 deletions src/main/resources/not_enough_gamerules.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"EnderDragonFightMixin",
"ServerWorldMixin",
"StatusEffectMixin",
"blocks.CarvedPumpkinBlockMixin",
"blocks.CoralBlockBlockMixin",
"blocks.CoralBlockMixin",
"blocks.CoralFanMixin",
Expand All @@ -22,13 +21,10 @@
"entities.EntityMixin",
"entities.FoxBreadMixin",
"entities.HoglinMixin",
"entities.iron_golem.IronGolemGoalMixin",
"entities.iron_golem.IronGolemMixin",
"entities.LivingEntityMixin",
"entities.MobEntityMixin",
"entities.PiglinMixin",
"entities.PigMixin",
"entities.TargetPredicateMixin",
"entities.TntEntityMixin",
"entities.TntMinecartEntityMixin",
"entities.VillagerMixin",
Expand Down

0 comments on commit 272e4ee

Please sign in to comment.