Skip to content

Commit

Permalink
viaversion 4.10.0 compat, indicate 1.20.6 support on modrinth
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris committed Apr 30, 2024
1 parent 51cbbba commit 2558354
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public GeyserSpigotLegacyNativeWorldManager(GeyserSpigotPlugin plugin, boolean i
int newBlockId = oldBlockId;
// protocolList should *not* be null; we checked for that before initializing this class
for (int i = protocolList.size() - 1; i >= 0; i--) {
MappingData mappingData = protocolList.get(i).getProtocol().getMappingData();
MappingData mappingData = protocolList.get(i).protocol().getMappingData();
if (mappingData != null) {
newBlockId = mappingData.getNewBlockStateId(newBlockId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ modrinth {
syncBodyFrom.set(rootProject.file("README.md").readText())

uploadFile.set(tasks.getByPath("remapModrinthJar"))
gameVersions.addAll("1.20.5")
gameVersions.addAll("1.20.5", "1.20.6")
failSilently.set(true)
}

0 comments on commit 2558354

Please sign in to comment.