Skip to content

Commit

Permalink
Mappings Update
Browse files Browse the repository at this point in the history
  • Loading branch information
md-5 committed Mar 17, 2019
1 parent 5259d80 commit a49270b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 34 deletions.
34 changes: 4 additions & 30 deletions nms-patches/ArgumentParserSelector.patch
@@ -1,32 +1,6 @@
--- a/net/minecraft/server/ArgumentParserSelector.java
+++ b/net/minecraft/server/ArgumentParserSelector.java
@@ -97,9 +97,23 @@
this(stringreader, true);
}

+ // CraftBukkit start - decompile error
+ private static final CriterionConditionValue.c DEFAULT_q;
+ private static final CriterionConditionValue.d DEFAULT_r;
+
+ static {
+ try {
+ DEFAULT_q = (CriterionConditionValue.c) Class.forName("net.minecraft.server.CriterionConditionValue$c").getDeclaredField("e").get(null);
+ DEFAULT_r = (CriterionConditionValue.d) Class.forName("net.minecraft.server.CriterionConditionValue$d").getDeclaredField("e").get(null);
+ } catch (Exception ex) {
+ throw new AssertionError(ex);
+ }
+ }
+
public ArgumentParserSelector(StringReader stringreader, boolean flag) {
- this.q = CriterionConditionValue.c.e;
- this.r = CriterionConditionValue.d.e;
+ this.q = DEFAULT_q;
+ this.r = DEFAULT_r;
+ // CraftBukkit end
this.y = CriterionConditionRange.a;
this.z = CriterionConditionRange.a;
this.A = (entity) -> {
@@ -126,7 +140,7 @@
@@ -126,7 +126,7 @@
axisalignedbb = this.a(this.v == null ? 0.0D : this.v, this.w == null ? 0.0D : this.w, this.x == null ? 0.0D : this.x);
}

Expand All @@ -35,7 +9,7 @@

if (this.s == null && this.t == null && this.u == null) {
function = (vec3d) -> {
@@ -187,8 +201,10 @@
@@ -187,8 +187,10 @@
};
}

Expand All @@ -48,7 +22,7 @@
this.G = this::d;
if (!this.l.canRead()) {
throw ArgumentParserSelector.d.createWithContext(this.l);
@@ -431,6 +447,12 @@
@@ -431,6 +433,12 @@
}

public EntitySelector s() throws CommandSyntaxException {
Expand All @@ -61,7 +35,7 @@
this.E = this.l.getCursor();
this.G = this::b;
if (this.l.canRead() && this.l.peek() == '@') {
@@ -439,7 +461,7 @@
@@ -439,7 +447,7 @@
}

this.l.skip();
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.0</version>
<version>7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
Expand Up @@ -160,7 +160,7 @@ public BlockData fromLegacy(Material material, byte data) {
* @return string
*/
public String getMappingsVersion() {
return "00ed8e5c39debc3ed194ad7c5645cc45";
return "7dd4b3ec31629620c41553e5c142e454";
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/bukkit/GameRuleTest.java
Expand Up @@ -21,9 +21,9 @@ public void testBukkitRules() {

@Test
public void testMinecraftRules() {
TreeMap<String, GameRules.b> minecraftRules = GameRules.getGameRules();
TreeMap<String, GameRules.GameRuleDefinition> minecraftRules = GameRules.getGameRules();

for (Map.Entry<String, GameRules.b> entry : minecraftRules.entrySet()) {
for (Map.Entry<String, GameRules.GameRuleDefinition> entry : minecraftRules.entrySet()) {
GameRule<?> bukkitRule = GameRule.getByName(entry.getKey());

Assert.assertNotNull(bukkitRule);
Expand Down

0 comments on commit a49270b

Please sign in to comment.