This commit is contained in:
Steven Smith 2016-06-20 18:08:37 -07:00
parent fe4f155a0d
commit a7b882a7d7
2 changed files with 4 additions and 6 deletions

View file

@ -708,8 +708,8 @@ public class MagicValues {
register(CollisionRule.ALWAYS, "always");
register(CollisionRule.NEVER, "never");
register(CollisionRule.HIDE_FOR_OTHER_TEAMS, "hideForOtherTeams");
register(CollisionRule.HIDE_FOR_OWN_TEAM, "hideForOwnTeam");
register(CollisionRule.PUSH_OTHER_TEAMS, "pushOtherTeams");
register(CollisionRule.PUSH_OWN_TEAM, "pushOwnTeam");
register(TeamColor.NONE, -1);
register(TeamColor.BLACK, 0);

View file

@ -1,10 +1,8 @@
package org.spacehq.mc.protocol.data.game.scoreboard;
public enum CollisionRule {
ALWAYS,
NEVER,
HIDE_FOR_OTHER_TEAMS,
HIDE_FOR_OWN_TEAM;
PUSH_OTHER_TEAMS,
PUSH_OWN_TEAM;
}