Skip to content

Commit

Permalink
Make the command actually work
Browse files Browse the repository at this point in the history
  • Loading branch information
Deftu committed Oct 20, 2024
1 parent 9b6b47c commit 294d6c5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

import org.polyfrost.colorsaturation.ColorSaturation;
import org.polyfrost.oneconfig.api.commands.v1.factories.annotated.Command;
import org.polyfrost.utils.v1.dsl.ScreensKt;

@Command(value = ColorSaturation.MODID, description = "Access the " + ColorSaturation.NAME + " GUI.")
public class SaturationCommand {
@Command
private void handle() {
private void main() {
// TODO Implement openGui
// ColorSaturation.config.openGui();
ScreensKt.openUI(ColorSaturation.config);
}
}

0 comments on commit 294d6c5

Please sign in to comment.