Attribute id fix
This commit is contained in:
parent
4dc7559044
commit
ef979b0841
1 changed files with 2 additions and 1 deletions
|
@ -3,13 +3,14 @@ package ru.betterend.registry;
|
||||||
import net.minecraft.core.Registry;
|
import net.minecraft.core.Registry;
|
||||||
import net.minecraft.world.entity.ai.attributes.Attribute;
|
import net.minecraft.world.entity.ai.attributes.Attribute;
|
||||||
import net.minecraft.world.entity.ai.attributes.AttributeSupplier;
|
import net.minecraft.world.entity.ai.attributes.AttributeSupplier;
|
||||||
|
import ru.betterend.BetterEnd;
|
||||||
import ru.betterend.item.EndAttribute;
|
import ru.betterend.item.EndAttribute;
|
||||||
|
|
||||||
public class EndAttributes {
|
public class EndAttributes {
|
||||||
public final static Attribute BLINDNESS_RESISTANCE = registerAttribute("generic.blindness_resistance", 0.0, true);
|
public final static Attribute BLINDNESS_RESISTANCE = registerAttribute("generic.blindness_resistance", 0.0, true);
|
||||||
|
|
||||||
public static Attribute registerAttribute(String name, double value, boolean syncable) {
|
public static Attribute registerAttribute(String name, double value, boolean syncable) {
|
||||||
return Registry.register(Registry.ATTRIBUTE, name, new EndAttribute("attribute.name." + name, value).setSyncable(syncable));
|
return Registry.register(Registry.ATTRIBUTE, BetterEnd.makeID(name), new EndAttribute("attribute.name." + name, value).setSyncable(syncable));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static AttributeSupplier.Builder addLivingEntityAttributes(AttributeSupplier.Builder builder) {
|
public static AttributeSupplier.Builder addLivingEntityAttributes(AttributeSupplier.Builder builder) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue