Skip to content

Commit

Permalink
Version 1.1.3
Browse files Browse the repository at this point in the history
                         Hotfixed Main Class issue
  • Loading branch information
robot-rover committed Aug 16, 2016
1 parent d049021 commit aa45d85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.rrIndustries</groupId>
<artifactId>sovietBot</artifactId>
<version>1.0.0</version>
<version>1.1.3</version>
<packaging>jar</packaging>
<repositories>
<repository>
Expand Down Expand Up @@ -40,7 +40,7 @@
<build>
<plugins>
<!-- IDE-agnostic way to set project to Java 8 -->
<!--<plugin>
<plugin>
<version>3.5.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -69,7 +69,7 @@
</configuration>
</execution>
</executions>
</plugin>-->
</plugin>
</plugins>
</build>

Expand Down
6 changes: 3 additions & 3 deletions src/main/java/main/Instance.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import static main.parsable.tryInt;
import static sx.blah.discord.util.audio.AudioPlayer.getAudioPlayerForGuild;

public class Instance {
class Instance {

/*public @interface command {
Expand All @@ -52,7 +52,7 @@ public class Instance {
private final String[] sfxIndex;
private final Random rn;
private final String[] quotes;
private static final String version = "1.1.2";
private static final String version = "1.1.3";
private static final String botName = "SovietBot";
private static final String frameName = sx.blah.discord.Discord4J.NAME;
private static final String frameVersion = sx.blah.discord.Discord4J.VERSION;
Expand All @@ -61,7 +61,7 @@ public class Instance {
private final Map<String, Consumer<commContext>> commandsTest = new HashMap<>();
private final String commChar;

public Instance(String token) {
Instance(String token) {
this.commChar = ">";
commandsTest.put("quote", this::defaultMessage);
commandsTest.put("stop", this::terminate);
Expand Down

0 comments on commit aa45d85

Please sign in to comment.