3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 22:02:50 +02:00

Add comment for other people

Dieser Commit ist enthalten in:
Mats 2016-03-07 23:08:34 +01:00
Ursprung cc354db464
Commit ee9d8d6365

Datei anzeigen

@ -103,7 +103,7 @@ public class OutgoingTransformer {
int effectid = input.readInt();
if (effectid >= 1000 && effectid < 2000 && effectid != 1005) //Sound effect
throw new CancelException();
if (effectid == 1005)
if (effectid == 1005) //Fix jukebox
effectid = 1010;
output.writeInt(effectid);
}