Skip to content

Commit

Permalink
Disable Old EGM (#80)
Browse files Browse the repository at this point in the history
Don't show it in the LGM file choosers until it is reworked and stabilized.
  • Loading branch information
RobertBColton authored Jul 18, 2020
1 parent 03093f8 commit 9e49499
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions org/enigma/EnigmaRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,12 @@ void addResourceHook()
FileChooser.readers.add(io);
FileChooser.writers.add(io);

Listener.getInstance().fc.addOpenFilters(io);
Listener.getInstance().fc.addSaveFilters(io);
// TODO: Disabled until somebody can figure out what the HELL is going on!
// Old EGM was a bad mix of binary and text serialization that led to extreme
// frustrations, and it should not be enabled until it is cleaned up,
// converted to text, versions the binaries, or is replaced with the new libEGM
//Listener.getInstance().fc.addOpenFilters(io);
//Listener.getInstance().fc.addSaveFilters(io);

LGM.addPluginResource(new EnigmaSettingsPluginResource());
}
Expand Down

0 comments on commit 9e49499

Please sign in to comment.