aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-09-13 15:31:29 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-09-13 15:31:29 -0600
commit2a6465534d7d652f1adb694c9e688ad3ce87fa11 (patch)
treea322e344102566ea0ad5bcaafdf744b69e532f66 /src/net/brysonsteck/Resurrection/commands/CommandAbout.java
parentddb4587eb810e4af760068666353dff7a9962352 (diff)
downloadresurrection-2a6465534d7d652f1adb694c9e688ad3ce87fa11.tar
resurrection-2a6465534d7d652f1adb694c9e688ad3ce87fa11.tar.gz
resurrection-2a6465534d7d652f1adb694c9e688ad3ce87fa11.tar.bz2
found parsesettings bug
Diffstat (limited to 'src/net/brysonsteck/Resurrection/commands/CommandAbout.java')
-rw-r--r--src/net/brysonsteck/Resurrection/commands/CommandAbout.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandAbout.java b/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
index 3d16878..272b4d0 100644
--- a/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
+++ b/src/net/brysonsteck/Resurrection/commands/CommandAbout.java
@@ -10,7 +10,7 @@ public class CommandAbout implements CommandExecutor {
String currentVersion;
boolean outdated;
- public CommandAbout(String currentVersion, boolean outdated) {
+ public CommandAbout(String debug, String currentVersion, boolean outdated) {
this.currentVersion = currentVersion;
this.outdated = outdated;
}