aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/plugin/fixes/interfaces
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-22 21:59:55 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-22 21:59:55 +1000
commit60db2be3440ebb05a38052d3a5b556ed6834897f (patch)
tree73dcea7ccd3cd80a3347311cac8e13636a2efaec /src/Java/gtPlusPlus/plugin/fixes/interfaces
parent4152f23cb366a69a0966c973108fec3d7de86f7f (diff)
downloadGT5-Unofficial-60db2be3440ebb05a38052d3a5b556ed6834897f.tar.gz
GT5-Unofficial-60db2be3440ebb05a38052d3a5b556ed6834897f.tar.bz2
GT5-Unofficial-60db2be3440ebb05a38052d3a5b556ed6834897f.zip
$ Fixed an issue where old style circuits would constantly load up, ignoring all configuration settings.
$ Tweaked Vanilla Sleeping at heights fix. + Added an interface for bug fixes, for future flexibility.
Diffstat (limited to 'src/Java/gtPlusPlus/plugin/fixes/interfaces')
-rw-r--r--src/Java/gtPlusPlus/plugin/fixes/interfaces/IBugFix.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/plugin/fixes/interfaces/IBugFix.java b/src/Java/gtPlusPlus/plugin/fixes/interfaces/IBugFix.java
new file mode 100644
index 0000000000..d67ff24d7b
--- /dev/null
+++ b/src/Java/gtPlusPlus/plugin/fixes/interfaces/IBugFix.java
@@ -0,0 +1,7 @@
+package gtPlusPlus.plugin.fixes.interfaces;
+
+public interface IBugFix {
+
+ public boolean isFixValid();
+
+}