Fix manual gui. Closes #1792
This commit is contained in:
parent
64b3441d6d
commit
926063ffcf
1 changed files with 9 additions and 4 deletions
|
@ -56,17 +56,22 @@ public class GuiManual extends Screen {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init() {
|
public void init() {
|
||||||
int y = height / 4;
|
int y = (height / 2) - guiHeight / 2;
|
||||||
|
y+= 40;
|
||||||
addButton(new GuiButtonExtended((width / 2 - 30), y + 10, 60, 20, I18n.translate("techreborn.manual.wikibtn"), var1 -> minecraft.openScreen(new ConfirmChatLinkScreen(t -> {
|
addButton(new GuiButtonExtended((width / 2 - 30), y + 10, 60, 20, I18n.translate("techreborn.manual.wikibtn"), var1 -> minecraft.openScreen(new ConfirmChatLinkScreen(t -> {
|
||||||
if(t){
|
if(t){
|
||||||
SystemUtil.getOperatingSystem().open("http://wiki.techreborn.ovh");
|
SystemUtil.getOperatingSystem().open("http://wiki.techreborn.ovh");
|
||||||
this.minecraft.openScreen(this);
|
this.minecraft.openScreen(this);
|
||||||
|
} else {
|
||||||
|
this.minecraft.openScreen(this);
|
||||||
}
|
}
|
||||||
}, "http://wiki.techreborn.ovh", false))));
|
}, "http://wiki.techreborn.ovh", false))));
|
||||||
addButton(new GuiButtonExtended((width / 2 - 30), y + 60, 60, 20, I18n.translate("techreborn.manual.discordbtn"), var1 -> minecraft.openScreen(new ConfirmChatLinkScreen(t -> {
|
addButton(new GuiButtonExtended((width / 2 - 30), y + 60, 60, 20, I18n.translate("techreborn.manual.discordbtn"), var1 -> minecraft.openScreen(new ConfirmChatLinkScreen(t -> {
|
||||||
if(t){
|
if(t){
|
||||||
SystemUtil.getOperatingSystem().open("https://discord.gg/teamreborn");
|
SystemUtil.getOperatingSystem().open("https://discord.gg/teamreborn");
|
||||||
this.minecraft.openScreen(this);
|
this.minecraft.openScreen(this);
|
||||||
|
}else {
|
||||||
|
this.minecraft.openScreen(this);
|
||||||
}
|
}
|
||||||
}, "https://discord.gg/teamreborn", false))));
|
}, "https://discord.gg/teamreborn", false))));
|
||||||
if(TechRebornConfig.allowManualRefund){
|
if(TechRebornConfig.allowManualRefund){
|
||||||
|
@ -85,10 +90,10 @@ public class GuiManual extends Screen {
|
||||||
int centerY = (height / 2) - guiHeight / 2;
|
int centerY = (height / 2) - guiHeight / 2;
|
||||||
blit(centerX, centerY, 0, 0, guiWidth, guiHeight);
|
blit(centerX, centerY, 0, 0, guiWidth, guiHeight);
|
||||||
int y = height / 4;
|
int y = height / 4;
|
||||||
font.draw(text1, ((width / 2) - font.getStringWidth(text1) / 2), height / 2 - (guiHeight / 4), 4210752);
|
font.draw(text1, ((width / 2) - font.getStringWidth(text1) / 2), centerY + 40, 4210752);
|
||||||
font.draw(text2, ((width / 2) - font.getStringWidth(text2) / 2), height / 2 + 5, 4210752);
|
font.draw(text2, ((width / 2) - font.getStringWidth(text2) / 2), centerY + 90, 4210752);
|
||||||
if (TechRebornConfig.allowManualRefund) {
|
if (TechRebornConfig.allowManualRefund) {
|
||||||
font.draw(text3, ((width / 2) - font.getStringWidth(text3) / 2), y + 100, 4210752);
|
font.draw(text3, ((width / 2) - font.getStringWidth(text3) / 2), centerY + 140, 4210752);
|
||||||
}
|
}
|
||||||
super.render(mouseX, mouseY, partialTicks);
|
super.render(mouseX, mouseY, partialTicks);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue