You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DOG_GREET_OWNER_LIMIT = builder
.comment("Specify how many dogs can greet you when you approach more than one missing dog.")
.comment("The remaning dogs will remain in their position.")
.comment("To disable the limit, set this to any non-positive integer.")
.comment("Although this will cause all of your dogs to stand up and greet.")
.comment("YOU HAVE BEEN WARNED! :)")
.translation("doggytalents.dog_greet_owner_limit")
.defineInRange("dog_greet_owner_limit", 5, Integer.MIN_VALUE, Integer.MAX_VALUE);
Result:
#YOU HAVE BEEN WARNED! :)#Range: > -2147483648dog_greet_owner_limit = 5
Probably solution:
DOG_GREET_OWNER_LIMIT = builder
.comment("Specify how many dogs can greet you when you approach more than one missing dog.\n"
+ "The remaning dogs will remain in their position.\n"
+ "To disable the limit, set this to any non-positive integer.\n"
+ "Although this will cause all of your dogs to stand up and greet.\n"
+ "YOU HAVE BEEN WARNED! :)")
.translation("doggytalents.dog_greet_owner_limit")
.defineInRange("dog_greet_owner_limit", 5, Integer.MIN_VALUE, Integer.MAX_VALUE);
Result:
#Specify how many dogs can greet you when you approach more than one missing dog.#The remaning dogs will remain in their position.#To disable the limit, set this to any non-positive integer.#Although this will cause all of your dogs to stand up and greet.#YOU HAVE BEEN WARNED! :)#Range: > -2147483648dog_greet_owner_limit = 5
The text was updated successfully, but these errors were encountered:
Hmmm... Which Minecraft/ Forge Version are you referring to? Since this behavior is kinda new and seems not to be what happened on my side (Using Forge 47.1.0 on 1.20.1) ....
1.18.2 - 1.18.8
For Example, We have:
Result:
Probably solution:
Result:
The text was updated successfully, but these errors were encountered: