Skip to content

Commit

Permalink
Fix mod icon in config
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyvest committed Jun 22, 2024
1 parent a51b152 commit 6087009
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod_name=ColorSaturation
# Sets the id of your mod that mod loaders use to recognize it.
mod_id=colorsaturation
# Sets the version of your mod. Make sure to update this when you make changes according to semver.
mod_version=1.0.0-alpha1
mod_version=1.0.0
# Sets the name of the jar file that you put in your 'mods' folder.
mod_archives_name=ColorSaturation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class SaturationConfig extends Config {
public static float saturation = 1;

public SaturationConfig() {
super(new Mod(ColorSaturation.NAME, ModType.UTIL_QOL), ColorSaturation.MODID + ".json");
super(new Mod(ColorSaturation.NAME, ModType.UTIL_QOL, "/colorsaturation.svg"), ColorSaturation.MODID + ".json");
initialize();

addListener("saturation", () -> {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/colorsaturation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6087009

Please sign in to comment.