File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/main/java/org/spongepowered/api/event Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -166,21 +166,25 @@ public final class EventContextKeys {
166
166
167
167
/**
168
168
* Used when leaves decay.
169
+ * @deprecated Use {@link BlockTransaction#operation()} instead.
169
170
*/
170
171
public static final EventContextKey <ServerWorld > LEAVES_DECAY = EventContextKeys .key (ResourceKey .sponge ("leaves_decay" ), ServerWorld .class );
171
172
172
173
/**
173
174
* Used when flowing liquid causing another block to break.
175
+ * @deprecated Use {@link BlockTransaction#operation()} instead.
174
176
*/
175
177
public static final EventContextKey <ServerWorld > LIQUID_BREAK = EventContextKeys .key (ResourceKey .sponge ("liquid_break" ), ServerWorld .class );
176
178
177
179
/**
178
180
* Used when flowing liquid moves to another location.
181
+ * @deprecated Use {@link BlockTransaction#operation()} instead.
179
182
*/
180
183
public static final EventContextKey <ServerWorld > LIQUID_FLOW = EventContextKeys .key (ResourceKey .sponge ("liquid_flow" ), ServerWorld .class );
181
184
182
185
/**
183
186
* Used when liquid changes state.
187
+ * @deprecated Use {@link BlockTransaction#operation()} instead.
184
188
*/
185
189
public static final EventContextKey <ServerWorld > LIQUID_MIX = EventContextKeys .key (ResourceKey .sponge ("liquid_mix" ), ServerWorld .class );
186
190
You can’t perform that action at this time.
0 commit comments