Add objective to constructor for ServerUpdateScorePacket

This commit is contained in:
johni0702 2015-03-10 14:30:58 +01:00
parent 584b296f0b
commit b7f071fb91

View file

@ -19,8 +19,9 @@ public class ServerUpdateScorePacket implements Packet {
private ServerUpdateScorePacket() {
}
public ServerUpdateScorePacket(String entry) {
public ServerUpdateScorePacket(String entry, String objective) {
this.entry = entry;
this.objective = objective;
this.action = ScoreboardAction.REMOVE;
}