3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-11-20 06:50:08 +01:00
Dieser Commit ist enthalten in:
Nassim Jahnke 2022-12-11 14:40:34 +01:00
Ursprung 2a49fc0bf8
Commit 58442ec177
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B
3 geänderte Dateien mit 22 neuen und 24 gelöschten Zeilen

Datei anzeigen

@ -53,25 +53,25 @@ public enum ServerboundPackets1_19_3 implements ServerboundPacketType {
ENTITY_ACTION, // 0x1D ENTITY_ACTION, // 0x1D
STEER_VEHICLE, // 0x1E STEER_VEHICLE, // 0x1E
PONG, // 0x1F PONG, // 0x1F
CHAT_SESSION_UPDATE, CHAT_SESSION_UPDATE, // 0x20
RECIPE_BOOK_DATA, // 0x20 RECIPE_BOOK_DATA, // 0x21
SEEN_RECIPE, // 0x21 SEEN_RECIPE, // 0x22
RENAME_ITEM, // 0x22 RENAME_ITEM, // 0x23
RESOURCE_PACK_STATUS, // 0x23 RESOURCE_PACK_STATUS, // 0x24
ADVANCEMENT_TAB, // 0x24 ADVANCEMENT_TAB, // 0x25
SELECT_TRADE, // 0x25 SELECT_TRADE, // 0x26
SET_BEACON_EFFECT, // 0x26 SET_BEACON_EFFECT, // 0x27
HELD_ITEM_CHANGE, // 0x27 HELD_ITEM_CHANGE, // 0x28
UPDATE_COMMAND_BLOCK, // 0x28 UPDATE_COMMAND_BLOCK, // 0x29
UPDATE_COMMAND_BLOCK_MINECART, // 0x29 UPDATE_COMMAND_BLOCK_MINECART, // 0x2A
CREATIVE_INVENTORY_ACTION, // 0x2A CREATIVE_INVENTORY_ACTION, // 0x2B
UPDATE_JIGSAW_BLOCK, // 0x2B UPDATE_JIGSAW_BLOCK, // 0x2C
UPDATE_STRUCTURE_BLOCK, // 0x2C UPDATE_STRUCTURE_BLOCK, // 0x2D
UPDATE_SIGN, // 0x2D UPDATE_SIGN, // 0x2E
ANIMATION, // 0x2E ANIMATION, // 0x2F
SPECTATE, // 0x2F SPECTATE, // 0x30
PLAYER_BLOCK_PLACEMENT, // 0x30 PLAYER_BLOCK_PLACEMENT, // 0x31
USE_ITEM; // 0x31 USE_ITEM; // 0x32
@Override @Override
public int getId() { public int getId() {

Datei anzeigen

@ -53,16 +53,14 @@ public class SoundRewriter {
@Override @Override
public void registerMap() { public void registerMap() {
handler(wrapper -> { handler(wrapper -> {
int soundId = wrapper.read(Type.VAR_INT); final int soundId = wrapper.read(Type.VAR_INT);
if (soundId == 0) { if (soundId == 0) {
// Is followed by the resource loation // Is followed by the resource loation
wrapper.write(Type.VAR_INT, 0); wrapper.write(Type.VAR_INT, 0);
return; return;
} }
// The id needs to be normalized final int mappedId = idRewriter.rewrite(soundId - 1); // Normalize sound id
soundId--;
final int mappedId = idRewriter.rewrite(soundId);
if (mappedId == -1) { if (mappedId == -1) {
wrapper.cancel(); wrapper.cancel();
return; return;

Datei anzeigen

@ -1,5 +1,5 @@
# Project properties - we put these here so they can be modified without causing a recompile of the build scripts # Project properties - we put these here so they can be modified without causing a recompile of the build scripts
projectVersion=4.5.1-SNAPSHOT projectVersion=4.5.1
# Gradle properties # Gradle properties
org.gradle.daemon=true org.gradle.daemon=true