Skip to content

Commit

Permalink
1.18.0-pre -> 1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Mar 3, 2022
1 parent b0740f6 commit d477539
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repositories {

dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modApi "net.fabricmc:fabric-loader:${project.loader_version}"

modApi fabricApi.module("fabric-api-base", project.fabric_version)
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.18-pre8
yarn_mappings=1.18-pre8+build.2
loader_version=0.12.5
fabric_version=0.43.0+1.18
# check these on https://fabricmc.net/develop
minecraft_version=1.18.2
yarn_mappings=1.18.2+build.1
loader_version=0.13.3
fabric_version=0.47.8+1.18.2

# Mod Properties
group=com.tamaized
Expand All @@ -15,5 +15,5 @@ org.gradle.daemon=false
description=Brings back the old Void Fog

# Dependencies
modmenu_version=2.0.0-beta.7
modmenu_version=3.1.0
kirin_version=1.10.0
4 changes: 2 additions & 2 deletions src/main/java/com/tamaized/voidfog/modmenu/OptionsScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ public void render(MatrixStack matrices, int mouseX, int mouseY, float partialTi
}

@Override
public void onClose() {
public void close() {
VoidFog.config.save();
super.onClose();
super.close();
}

private Text formatValue(AbstractSlider<Float> sender) {
Expand Down

0 comments on commit d477539

Please sign in to comment.