mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
1.20.3-pre1
Just a mappings update :)
This commit is contained in:
parent
7feff5da3e
commit
ed814d36ba
4 changed files with 13 additions and 13 deletions
fabric-networking-api-v1/src
main/java/net/fabricmc/fabric/impl/networking/server
testmod/java/net/fabricmc/fabric/test/networking/channeltest
fabric-transfer-api-v1/src/main/java/net/fabricmc/fabric/impl/transfer
gradle.properties
|
@ -42,7 +42,7 @@ public final class ServerPlayNetworkAddon extends AbstractChanneledNetworkAddon<
|
|||
private boolean sentInitialRegisterPacket;
|
||||
|
||||
public ServerPlayNetworkAddon(ServerPlayNetworkHandler handler, ClientConnection connection, MinecraftServer server) {
|
||||
super(ServerNetworkingImpl.PLAY, connection, "ServerPlayNetworkAddon for " + handler.player.getEntityName());
|
||||
super(ServerNetworkingImpl.PLAY, connection, "ServerPlayNetworkAddon for " + handler.player.getDisplayName());
|
||||
this.handler = handler;
|
||||
this.server = server;
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ public final class NetworkingChannelTest implements ModInitializer {
|
|||
System.out.printf("Received packet on channel %s%n", channel);
|
||||
});
|
||||
|
||||
context.getSource().sendFeedback(() -> Text.literal(String.format("Registered channel %s for %s", channel, executor.getEntityName())), false);
|
||||
context.getSource().sendFeedback(() -> Text.literal(String.format("Registered channel %s for %s", channel, executor.getDisplayName())), false);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ public final class NetworkingChannelTest implements ModInitializer {
|
|||
}
|
||||
|
||||
ServerPlayNetworking.unregisterReceiver(player.networkHandler, channel);
|
||||
context.getSource().sendFeedback(() -> Text.literal(String.format("Unregistered channel %s for %s", getIdentifier(context, "channel"), player.getEntityName())), false);
|
||||
context.getSource().sendFeedback(() -> Text.literal(String.format("Unregistered channel %s for %s", getIdentifier(context, "channel"), player.getDisplayName())), false);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ public final class DebugMessages {
|
|||
}
|
||||
|
||||
public static String forPlayer(PlayerEntity player) {
|
||||
return player.getEntityName() + "/" + player.getUuidAsString();
|
||||
return player.getDisplayName() + "/" + player.getUuidAsString();
|
||||
}
|
||||
|
||||
public static String forInventory(@Nullable Inventory inventory) {
|
||||
|
|
|
@ -2,8 +2,8 @@ org.gradle.jvmargs=-Xmx2560M
|
|||
org.gradle.parallel=true
|
||||
fabric.loom.multiProjectOptimisation=true
|
||||
|
||||
version=0.90.10
|
||||
minecraft_version=23w46a
|
||||
version=0.90.11
|
||||
minecraft_version=1.20.3-pre1
|
||||
yarn_version=+build.1
|
||||
loader_version=0.14.23
|
||||
installer_version=0.11.1
|
||||
|
@ -21,10 +21,10 @@ fabric-blockrenderlayer-v1-version=1.1.44
|
|||
fabric-command-api-v1-version=1.2.39
|
||||
fabric-command-api-v2-version=2.2.18
|
||||
fabric-commands-v0-version=0.2.56
|
||||
fabric-containers-v0-version=0.1.77
|
||||
fabric-containers-v0-version=0.1.78
|
||||
fabric-content-registries-v0-version=5.0.8
|
||||
fabric-crash-report-info-v1-version=0.2.21
|
||||
fabric-data-generation-api-v1-version=13.1.12
|
||||
fabric-data-generation-api-v1-version=13.1.13
|
||||
fabric-dimensions-v1-version=2.1.59
|
||||
fabric-entity-events-v1-version=1.5.26
|
||||
fabric-events-interaction-v0-version=0.6.13
|
||||
|
@ -41,11 +41,11 @@ fabric-message-api-v1-version=6.0.3
|
|||
fabric-mining-level-api-v1-version=2.1.58
|
||||
fabric-model-loading-api-v1-version=1.0.6
|
||||
fabric-models-v0-version=0.4.5
|
||||
fabric-networking-api-v1-version=3.0.13
|
||||
fabric-networking-api-v1-version=3.0.14
|
||||
fabric-object-builder-api-v1-version=13.0.6
|
||||
fabric-particles-v1-version=1.1.5
|
||||
fabric-recipe-api-v1-version=2.0.11
|
||||
fabric-registry-sync-v0-version=4.0.9
|
||||
fabric-recipe-api-v1-version=2.0.12
|
||||
fabric-registry-sync-v0-version=4.0.10
|
||||
fabric-renderer-api-v1-version=3.2.2
|
||||
fabric-renderer-indigo-version=1.5.2
|
||||
fabric-renderer-registries-v1-version=3.2.49
|
||||
|
@ -56,9 +56,9 @@ fabric-rendering-v1-version=3.0.11
|
|||
fabric-resource-conditions-api-v1-version=2.3.11
|
||||
fabric-resource-loader-v0-version=0.11.14
|
||||
fabric-screen-api-v1-version=2.0.15
|
||||
fabric-screen-handler-api-v1-version=1.3.46
|
||||
fabric-screen-handler-api-v1-version=1.3.47
|
||||
fabric-sound-api-v1-version=1.0.15
|
||||
fabric-transfer-api-v1-version=4.0.3
|
||||
fabric-transfer-api-v1-version=4.0.4
|
||||
fabric-transitive-access-wideners-v1-version=5.0.11
|
||||
fabric-convention-tags-v1-version=1.5.8
|
||||
fabric-client-tags-api-v1-version=1.1.5
|
||||
|
|
Loading…
Add table
Reference in a new issue