3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-03 08:41:05 +02:00

Fixed bracket markup ;)

Dieser Commit ist enthalten in:
HugoDaBosss 2016-03-03 10:09:38 +01:00
Ursprung afb96c4878
Commit 29d2334ef0
2 geänderte Dateien mit 2 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -282,8 +282,7 @@ public enum SoundEffect {
return cat; return cat;
} }
public boolean isBreakPlaceSound() public boolean isBreakPlaceSound() {
{
return breaksound; return breaksound;
} }

Datei anzeigen

@ -59,8 +59,7 @@ public class OutgoingTransformer {
int catid = 0; int catid = 0;
String newname = name; String newname = name;
if (effect != null) { if (effect != null) {
if(effect.isBreakPlaceSound()) if(effect.isBreakPlaceSound()) {
{
input.readBytes(input.readableBytes()); input.readBytes(input.readableBytes());
output.clear(); output.clear();
return; return;