Compare commits

...

2 Commits

Author SHA1 Message Date
Anya a58478e303 0.7.0-pre
updated maven-shade-plugin
2022-03-30 10:12:38 -07:00
Anya 62f07da899 Enable InfoCommand
early mornings, right?
2022-03-30 10:03:01 -07:00
2 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<groupId>moe.oko</groupId> <groupId>moe.oko</groupId>
<artifactId>Kiafumi</artifactId> <artifactId>Kiafumi</artifactId>
<name>Kiafumi</name> <name>Kiafumi</name>
<version>0.6.0-pre</version> <version>0.7.0-pre</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<url>https://oko.moe/kiafumi.htm</url> <url>https://oko.moe/kiafumi.htm</url>
@ -84,6 +84,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>

View File

@ -15,7 +15,7 @@ import java.util.List;
public class InfoCommand extends CommandClass{ public class InfoCommand extends CommandClass{
@Override @Override
public boolean isEnabled() { return false; } public boolean isEnabled() { return true; }
@Override @Override
public String getName() { return "Info"; } public String getName() { return "Info"; }