Remap CraftBukkit to Mojang+Yarn Mappings

By: Initial Source <noreply+automated@papermc.io>
This commit is contained in:
CraftBukkit/Spigot
2024-12-11 22:26:55 +01:00
parent a265d64138
commit 30e4583dbe
1780 changed files with 44628 additions and 41274 deletions

View File

@@ -27,13 +27,13 @@ public class CraftGameEvent extends GameEvent implements Handleable<net.minecraf
@Override
public net.minecraft.world.level.gameevent.GameEvent getHandle() {
return handle;
return this.handle;
}
@NotNull
@Override
public NamespacedKey getKey() {
return key;
return this.key;
}
@Override
@@ -46,16 +46,16 @@ public class CraftGameEvent extends GameEvent implements Handleable<net.minecraf
return false;
}
return getKey().equals(((GameEvent) other).getKey());
return this.getKey().equals(((GameEvent) other).getKey());
}
@Override
public int hashCode() {
return getKey().hashCode();
return this.getKey().hashCode();
}
@Override
public String toString() {
return "CraftGameEvent{key=" + key + "}";
return "CraftGameEvent{key=" + this.key + "}";
}
}