color > colour

This commit is contained in:
Bella 2019-12-14 19:45:48 -05:00
parent 873d67cde1
commit cadc6a8453
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ import me.zeroeightsix.kami.setting.Settings;
//import me.zeroeightsix.kami.setting.builder.numerical.NumericalSettingBuilder;
//import me.zeroeightsix.kami.setting.impl.numerical.NumberSetting;
@Module.Info(name = "GUI Color", description = "Change GUI Colors", category = Module.Category.EXPERIMENTAL)
public class GUIColor extends Module {
@Module.Info(name = "GUI Colour", description = "Change GUI Colours", category = Module.Category.EXPERIMENTAL)
public class GUIColour extends Module {
public Setting<Integer> red = this.register(Settings.integerBuilder("Red").withMinimum(0).withValue(13).withMaximum(255).build());
public Setting<Integer> green = this.register(Settings.integerBuilder("Green").withMinimum(0).withValue(13).withMaximum(255).build());
public Setting<Integer> blue = this.register(Settings.integerBuilder("Blue").withMinimum(0).withValue(13).withMaximum(255).build());