mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Pretend this never happened please
This commit is contained in:
parent
3e85e7f94c
commit
ecfdb9a555
13 changed files with 15 additions and 2 deletions
|
@ -14,7 +14,7 @@ buildscript {
|
||||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
|
|
||||||
version = "1.10.2-r52"
|
version = "1.10.2-r53"
|
||||||
group = "de.ellpeck.actuallyadditions"
|
group = "de.ellpeck.actuallyadditions"
|
||||||
archivesBaseName = "ActuallyAdditions"
|
archivesBaseName = "ActuallyAdditions"
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@ public class GuiCanolaPress extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ public class GuiCoalGenerator extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,7 @@ public class GuiCoffeeMachine extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ public class GuiDirectionalBreaker extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ public class GuiEnergizer extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ public class GuiEnervator extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ public class GuiFurnaceDouble extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,7 @@ public class GuiGrinder extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@ public class GuiOilGenerator extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@ public class GuiRepairer extends GuiContainer{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException{
|
||||||
|
super.mouseClicked(mouseX, mouseY, mouseButton);
|
||||||
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
this.energy.onMouseClick(mouseX, mouseY, mouseButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# 1.10.2-r53
|
||||||
|
* Made the player able to click in GUIs again. Pretend this never happened please.
|
||||||
|
|
||||||
# 1.10.2-r52
|
# 1.10.2-r52
|
||||||
* Added lens of disenchanting. It's awesome, I promise.
|
* Added lens of disenchanting. It's awesome, I promise.
|
||||||
* Awesome new energy and fluid displays in GUIs
|
* Awesome new energy and fluid displays in GUIs
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
1.9=33
|
1.9=33
|
||||||
1.9.4=45
|
1.9.4=45
|
||||||
1.10=46
|
1.10=46
|
||||||
1.10.2=52
|
1.10.2=53
|
Loading…
Reference in a new issue