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 d4e7e85 commit 343d908Copy full SHA for 343d908
src/main/java/org/spongepowered/api/data/Keys.java
@@ -1124,6 +1124,13 @@ public final class Keys {
1124
*/
1125
public static final Key<Value<UUID>> FIRST_TRUSTED = Keys.key(ResourceKey.sponge("first_trusted"), UUID.class);
1126
1127
+ /**
1128
+ * Whether a {@link ItemFrame} is "fixed".
1129
+ *
1130
+ * <p>Fixed item frames can not have their contents modified.</p>
1131
+ */
1132
+ public static final Key<Value<Boolean>> FIXED = Keys.key(ResourceKey.sponge("fixed"), Boolean.class);
1133
+
1134
/**
1135
* The fixed time in a {@link ServerWorld world} of a {@link WorldType}.
1136
* <p>If set the time is fixed at a particular {@link MinecraftDayTime} otherwise time flows freely.</p>
0 commit comments