[PORT] Port for 25w15a.... Seriously mojang, JUST STOP....
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
def JDK = "21"
|
||||
def majorMc = "1.21.5";
|
||||
def majorMc = "1.21.6";
|
||||
|
||||
pipeline {
|
||||
agent {
|
||||
|
@@ -1,9 +1,9 @@
|
||||
def projectName = "CraterLib";
|
||||
def projectIcon = "https://cdn.modrinth.com/data/Nn8Wasaq/a172c634683a11a2e9ae593e56eba7885743bb44.png";
|
||||
def JDK = "21";
|
||||
def majorMc = "1.21.5";
|
||||
def majorMc = "1.21.6";
|
||||
def modLoaders = "neoforge|fabric|quilt|paper";
|
||||
def supportedMc = "1.21.5-rc1";
|
||||
def supportedMc = "25w15a";
|
||||
def reltype = "experimental";
|
||||
|
||||
pipeline {
|
||||
|
@@ -179,7 +179,7 @@ public class CraterConfigScreen extends Screen {
|
||||
|
||||
@Override
|
||||
public void render(@NotNull GuiGraphics matrices, int mouseX, int mouseY, float delta) {
|
||||
overlayBackground(matrices.pose(), TOP, height - BOTTOM, 32);
|
||||
/*overlayBackground(matrices.pose(), TOP, height - BOTTOM, 32);
|
||||
renderScrollBar();
|
||||
|
||||
matrices.pose().pushPose();
|
||||
@@ -198,7 +198,7 @@ public class CraterConfigScreen extends Screen {
|
||||
option.render(minecraft, font, 40, y, width - 80, height1, matrices, mouseX, mouseY, delta);
|
||||
renderConfigTooltip(matrices, font, mouseX, mouseY, 40, y, font.width(option.text), height1, option.text.getString(), option.getLangKeys().toArray(new String[0]));
|
||||
y += height1;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
private void renderScrollBar() {
|
||||
|
@@ -55,7 +55,7 @@ public class BridgedMinecraft {
|
||||
}
|
||||
|
||||
public String getGameVersion() {
|
||||
return SharedConstants.getCurrentVersion().getName();
|
||||
return SharedConstants.getCurrentVersion().name();
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
|
@@ -38,7 +38,7 @@ public class BridgedMinecraftServer {
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return SharedConstants.getCurrentVersion().getName();
|
||||
return SharedConstants.getCurrentVersion().name();
|
||||
}
|
||||
|
||||
public boolean usesAuthentication() {
|
||||
|
@@ -25,7 +25,7 @@ public class ChatUtils {
|
||||
|
||||
@Getter
|
||||
private static final GsonComponentSerializer adventureSerializer = GsonComponentSerializer.builder().options(
|
||||
JSONOptions.byDataVersion().at(SharedConstants.getCurrentVersion().getDataVersion().getVersion())
|
||||
JSONOptions.byDataVersion().at(SharedConstants.getCurrentVersion().dataVersion().version())
|
||||
).build();
|
||||
|
||||
private static final MiniMessage miniMessage = MiniMessage.miniMessage();
|
||||
|
@@ -10,12 +10,12 @@ mod_id=craterlib
|
||||
mod_name=CraterLib
|
||||
|
||||
# Shared
|
||||
minecraft_version=1.21.5
|
||||
minecraft_version=25w15a
|
||||
project_group=com.hypherionmc.craterlib
|
||||
|
||||
# Fabric
|
||||
fabric_loader=0.16.10
|
||||
fabric_api=0.119.5+1.21.5
|
||||
fabric_loader=0.16.13
|
||||
fabric_api=0.119.10+1.21.6
|
||||
|
||||
# Forge
|
||||
forge_version=50.0.6
|
||||
|
@@ -14,6 +14,6 @@ pluginManagement {
|
||||
}
|
||||
|
||||
rootProject.name = 'CraterLib'
|
||||
include("Common", "Fabric", "NeoForge")
|
||||
include("Common", "Fabric"/*, "NeoForge"*/)
|
||||
//include 'Paper'
|
||||
|
||||
|
Reference in New Issue
Block a user