mirror of
https://github.com/CompeyDev/elytra-lock-fabric.git
synced 2025-03-14 07:24:27 +00:00
10 lines
254 B
Java
10 lines
254 B
Java
package xyz.devcomp.elytralock.events;
|
|
|
|
import net.minecraft.client.MinecraftClient;
|
|
|
|
public class ClientTickEndEvent {
|
|
public void callbackHandler(MinecraftClient client) {
|
|
// Check if guy wearing elytra, if so, then remove
|
|
|
|
}
|
|
}
|