mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-28 02:48:14 -05:00
Update #50 - Bug fixes and shader improvements
This commit is contained in:
@ -65,15 +65,15 @@ public class Config {
|
||||
}
|
||||
|
||||
public static boolean isTreesFancy() {
|
||||
return gameSettings.fancyGraphics;
|
||||
return gameSettings.fancyGraphics || gameSettings.shaders;
|
||||
}
|
||||
|
||||
public static boolean isTreesSmart() {
|
||||
return gameSettings.fancyGraphics && gameSettings.smartLeavesOF;
|
||||
return (gameSettings.fancyGraphics || gameSettings.shaders) && gameSettings.smartLeavesOF;
|
||||
}
|
||||
|
||||
public static boolean isCullFacesLeaves() {
|
||||
return !gameSettings.fancyGraphics;
|
||||
return !gameSettings.fancyGraphics || gameSettings.shaders;
|
||||
}
|
||||
|
||||
public static boolean isCustomItems() {
|
||||
|
Reference in New Issue
Block a user