1
0
mirror of https://github.com/chylex/Better-Controls.git synced 2025-04-09 15:15:51 +02:00

Fix compile error in 1.16.4 (apparently override visibility is forwards compatible so 1.16.2+ build still works)

This commit is contained in:
chylex 2020-11-04 02:46:25 +01:00
parent 5031d83962
commit eb81c5f635
2 changed files with 3 additions and 3 deletions
build.gradle
src/main/java/chylex/bettercontrols/gui

View File

@ -22,8 +22,8 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'eclipse'
def mcversion = "1.16.3"
def forgeversion = "34.1.0"
def mcversion = "1.16.4"
def forgeversion = "35.0.1"
def prefixName = 'displayName = '
def prefixVersion = 'version = '

View File

@ -62,7 +62,7 @@ public final class OptionListWidget extends AbstractOptionList<Entry>{
}
@Override
protected int getRowLeft(){
public int getRowLeft(){
return super.getRowLeft() - ROW_PADDING;
}