Skip to content

Commit

Permalink
Medium Bug preview icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Slotterleet committed Apr 25, 2024
1 parent 2d849aa commit b54fc20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added res/sprites/units/bugs/bug-medium.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/fos/core/FOSMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,12 @@ public void constructSettings() {
"@setting.fos-menutheme.default");
t.checkPref("fos-rotatemenucamera", true);
t.checkPref("fos-animatedore", true);
t.checkPref("fos-classicdamagedisplay", false, b -> {
t.checkPref("fos-classicdamagedisplay", true, b -> {
if (b) {
settings.put("fos-damagedisplay", false);
}
});
t.checkPref("fos-damagedisplay", true, b -> {
t.checkPref("fos-damagedisplay", false, b -> {
if (b) {
settings.put("fos-classicdamagedisplay", false);
}
Expand Down

0 comments on commit b54fc20

Please sign in to comment.