9
0
mirror of https://github.com/GeyserExtensionists/GeyserUtils.git synced 2025-12-19 15:09:24 +00:00

bungee support & update

This commit is contained in:
zimzaza4
2024-03-02 16:29:49 +08:00
parent de2c5a4230
commit 4a605fda5c
9 changed files with 69 additions and 32 deletions

View File

@@ -21,5 +21,7 @@ public class SetInstruction implements Instruction {
@Nullable
private Pos facing;
private CameraPreset preset;
@Nullable
private FadeInstruction fade;
protected SetInstruction() {}
}

View File

@@ -0,0 +1,13 @@
package me.zimzaza4.geyserutils.common.packet;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Getter
@AllArgsConstructor
@NoArgsConstructor
public class CameraLockCustomPayloadPacket extends CustomPayloadPacket {
boolean lock;
}