Commit 2ef0dfb7 by Jonathan Thomas

Renaming the C2S packets for clarity, before adding the S3C packets.

parent 4d44550c
Pipeline #11644 passed with stage
in 20 seconds
...@@ -16,7 +16,7 @@ public class ModPackets { ...@@ -16,7 +16,7 @@ public class ModPackets {
buf.writeInt(entity.getId()); buf.writeInt(entity.getId());
// Send C2S packet // Send C2S packet
ClientPlayNetworking.send(ModInit.PACKET_CLIENT_GREETING, buf); ClientPlayNetworking.send(ModInit.PACKET_C2S_GREETING, buf);
} }
public static void sendUpdateLineNumber(Entity entity, Integer lineNumber) { public static void sendUpdateLineNumber(Entity entity, Integer lineNumber) {
...@@ -25,7 +25,7 @@ public class ModPackets { ...@@ -25,7 +25,7 @@ public class ModPackets {
buf.writeInt(lineNumber); buf.writeInt(lineNumber);
// Send C2S packet // Send C2S packet
ClientPlayNetworking.send(ModInit.PACKET_CLIENT_READ_NEXT, buf); ClientPlayNetworking.send(ModInit.PACKET_C2S_READ_NEXT, buf);
} }
} }
...@@ -14,8 +14,8 @@ import org.slf4j.LoggerFactory; ...@@ -14,8 +14,8 @@ import org.slf4j.LoggerFactory;
public class ModInit implements ModInitializer { public class ModInit implements ModInitializer {
public static final Logger LOGGER = LoggerFactory.getLogger("mobgpt"); public static final Logger LOGGER = LoggerFactory.getLogger("mobgpt");
public static final Identifier PACKET_CLIENT_GREETING = new Identifier("mobgpt", "packet_client_greeting"); public static final Identifier PACKET_C2S_GREETING = new Identifier("mobgpt", "packet_c2s_greeting");
public static final Identifier PACKET_CLIENT_READ_NEXT = new Identifier("mobgpt", "packet_client_read_next"); public static final Identifier PACKET_C2S_READ_NEXT = new Identifier("mobgpt", "packet_c2s_read_next");
@Override @Override
public void onInitialize() { public void onInitialize() {
...@@ -24,7 +24,7 @@ public class ModInit implements ModInitializer { ...@@ -24,7 +24,7 @@ public class ModInit implements ModInitializer {
// Proceed with mild caution. // Proceed with mild caution.
// Handle packet for Greeting // Handle packet for Greeting
ServerPlayNetworking.registerGlobalReceiver(PACKET_CLIENT_GREETING, (server, player, handler, buf, responseSender) -> { ServerPlayNetworking.registerGlobalReceiver(PACKET_C2S_GREETING, (server, player, handler, buf, responseSender) -> {
int entityId = buf.readInt(); int entityId = buf.readInt();
// Ensure that the task is synced with the server thread // Ensure that the task is synced with the server thread
...@@ -44,7 +44,7 @@ public class ModInit implements ModInitializer { ...@@ -44,7 +44,7 @@ public class ModInit implements ModInitializer {
}); });
// Handle packet for reading lines of message // Handle packet for reading lines of message
ServerPlayNetworking.registerGlobalReceiver(PACKET_CLIENT_READ_NEXT, (server, player, handler, buf, responseSender) -> { ServerPlayNetworking.registerGlobalReceiver(PACKET_C2S_READ_NEXT, (server, player, handler, buf, responseSender) -> {
int entityId = buf.readInt(); int entityId = buf.readInt();
int lineNumber = buf.readInt(); int lineNumber = buf.readInt();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment