3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-31 01:28:13 +02:00

Fixed single line if statements

Dieser Commit ist enthalten in:
rtm516 2020-04-15 10:55:10 +01:00
Ursprung 522dc864de
Commit 8fd4632d07

Datei anzeigen

@ -41,7 +41,9 @@ public class BedrockAnimateTranslator extends PacketTranslator<AnimatePacket> {
@Override
public void translate(AnimatePacket packet, GeyserSession session) {
// Stop the player sending animations before they have fully spawned into the server
if (!session.isSpawned()) { return; }
if (!session.isSpawned()) {
return;
}
switch (packet.getAction()) {
case SWING_ARM: