mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-29 23:48:00 +01:00
Default button id is 5k
This commit is contained in:
parent
28871730e6
commit
92209cbf1f
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ public class Button extends GuiButton implements IActionable, IGuiTooltipped {
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public Button(int x, int y, int width, int height, String label, IGuiAction<? extends Button> callback) {
|
public Button(int x, int y, int width, int height, String label, IGuiAction<? extends Button> callback) {
|
||||||
super(0, x, y, width, height, GameGui.format(label));
|
super(5000, x, y, width, height, GameGui.format(label));
|
||||||
action = (IGuiAction<Button>)callback;
|
action = (IGuiAction<Button>)callback;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue