Skip to content

Commit

Permalink
Remove puppies, add kittens.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyhedral committed Mar 20, 2022
1 parent 0044f20 commit 393d17f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public ServerConfig(ForgeConfigSpec.Builder builder) {
DISABLE_HUNGER = builder.comment("Disable hunger mode for the cat").translation("catherder.config.cat.disable_hunger").define("disable_hunger", false);
STARTING_ITEMS = builder.comment("When enabled you will spawn with a guide, Cat Charm and Command Emblem.").translation("catherder.config.enable_starting_items").define("enable_starting_items", false);
CAT_GENDER = builder.comment("When enabled, cats will be randomly assigned genders and will only mate and produce children with the opposite gender.").translation("catherder.config.enable_gender").define("enable_gender", true);
KITTENS_GET_PARENT_LEVELS = builder.comment("When enabled, puppies get some levels from parents. When disabled, puppies start at 0 points.").translation("catherder.config.enable_pup_get_parent_levels").define("enable_pup_get_parent_levels", false);
KITTENS_GET_PARENT_LEVELS = builder.comment("When enabled, kittens get some levels from parents. When disabled, kittens start at 0 points.").translation("catherder.config.enable_kitten_get_parent_levels").define("enable_kitten_get_parent_levels", false);
TIME_TO_MATURE = builder.comment("The time in ticks it takes for a baby cat to become an adult, default 48000 (2 Minecraft days) and minimum 0").translation("catherder.config.cat.time_to_mature").defineInRange("time_to_mature", 48000, 0, Integer.MAX_VALUE);
CAT_WHINE_WHEN_HUNGER_LOW = builder.comment("Determines if cats should whine when hunger reaches below 20 DP.").translation("catherder.config.whine_when_hungry").define("whine_when_hungry", true);
EAT_FOOD_ON_FLOOR = builder.comment("When enabled cats will path and eat editable items in the world.").translation("catherder.config.eat_food_on_floor").define("eat_food_on_floor", true);
Expand Down

0 comments on commit 393d17f

Please sign in to comment.