Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindgamesnl committed Jul 9, 2024
1 parent dcdaab3 commit b9d52c7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions modules/vistas-server/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/bash/data.bin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BUILD_NUM="1445"
BUILD_NUM="1448"
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,18 @@ public void onExecute(User sender, String[] args) {
return;
}

if (args[0].equalsIgnoreCase("temp") && args.length == 4) {
// todo!!! THESE ARG CHECKS NEED TO EXCLUDE PARAMETERS
if (args[0].equalsIgnoreCase("temp") && args.length >= 4) {
delegateTo("temp", sender, args);
return;
}

if (args[0].equalsIgnoreCase("create") && (args.length == 3 || args.length == 4)) {
if (args[0].equalsIgnoreCase("create") && args.length >= 3) {
delegateTo("create", sender, args);
return;
}

if (args[0].equalsIgnoreCase("delete") && args.length == 2) {
if (args[0].equalsIgnoreCase("delete") && args.length >= 2) {
delegateTo("delete", sender, args);
return;
}
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/resources/data.bin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BUILD_NUM="1445"
BUILD_NUM="1448"
4 changes: 2 additions & 2 deletions plugin/src/main/resources/openaudiomc-build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BUILD_VERSION="1445"
BUILD_COMMIT="28cd0ac842b271f5be2e8efe9dc60208b96ad077"
BUILD_VERSION="1448"
BUILD_COMMIT="dcdaab31ba30e4e2af1e1b3603fd9c448af2f13c"
BUILD_AUTHOR="Mats"

0 comments on commit b9d52c7

Please sign in to comment.