mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Fix #183.
This commit is contained in:
parent
fe4f155a0d
commit
a7b882a7d7
2 changed files with 4 additions and 6 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue