Add missing break statement

This commit is contained in:
Felix Cravic 2020-06-29 17:32:35 +02:00
parent 2db810bafa
commit 18f9341c55

View File

@ -703,6 +703,7 @@ public class Player extends LivingEntity implements CommandSender {
break;
case SET_ACTION_BAR:
titlePacket.actionBarText = text.toString();
break;
default:
throw new UnsupportedOperationException("Invalid TitlePacket.Action type!");
}