Skip to content

Commit

Permalink
forgot to add one more patcher option
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyvest committed Jun 20, 2024
1 parent 2d282a3 commit b320c4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
public class OldPatcherConfig {
public static boolean crosshairPerspective;
public static boolean guiCrosshair;
public static boolean removeInvertFromCrosshair;
}
4 changes: 4 additions & 0 deletions src/main/kotlin/org/polyfrost/crosshair/config/ModConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ object ModConfig : Config(Mod(PolyCrosshair.NAME, ModType.HUD), "${PolyCrosshair
renderConfig.showInThirdPerson = false
didAnything = true
}
if (OldPatcherConfig.removeInvertFromCrosshair) {
renderConfig.invertColor = false
didAnything = true
}
renderConfig.didPatcherMigration = true
save()
if (didAnything) {
Expand Down

0 comments on commit b320c4b

Please sign in to comment.