We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4122e commit 1bc6085Copy full SHA for 1bc6085
src/main/java/org/spongepowered/api/data/Keys.java
@@ -1035,6 +1035,11 @@ public final class Keys {
1035
*/
1036
public static final Key<Value<Ticks>> FIRE_DAMAGE_DELAY = Keys.key(ResourceKey.sponge("fire_damage_delay"), Ticks.class);
1037
1038
+ /**
1039
+ * Whether an {@link ItemStack} will burn in fire.
1040
+ */
1041
+ public static final Key<Value<Boolean>> FIRE_RESISTANT = Keys.key(ResourceKey.sponge("fire_resistant"), Boolean.class);
1042
+
1043
/**
1044
* The amount of ticks an {@link Entity} is still burning.
1045
0 commit comments