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 3a35612 commit 89ca014Copy full SHA for 89ca014
src/main/java/org/spongepowered/api/data/Keys.java
@@ -1116,6 +1116,13 @@ public final class Keys {
1116
*/
1117
public static final Key<Value<HorseStyle>> HORSE_STYLE = Keys.key(ResourceKey.sponge("horse_style"), HorseStyle.class);
1118
1119
+ /**
1120
+ * The inaccuracy of an {@link ItemStack} that launches {@link Projectile}s.
1121
+ *
1122
+ * <p>An inaccuracy of 0 means perfect accuracy. Inaccuracy of 1 is the default for most vanilla items.</p>
1123
+ */
1124
+ public static final Key<Value<Double>> INACCURACY = Keys.key(ResourceKey.sponge("inaccuracy"), Double.class);
1125
+
1126
/**
1127
* Whether an {@link Item} will not despawn for an infinite time.
1128
0 commit comments