mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-02 16:49:09 +00:00
Merge pull request #92 from Parabot/bugfix/actions-output
[BUGFIX] Actions Output
This commit is contained in:
+2
-2
@@ -1,7 +1,7 @@
|
||||
language: java
|
||||
|
||||
jdk:
|
||||
- oraclejdk7
|
||||
- openjdk7
|
||||
- oraclejdk8
|
||||
|
||||
before_install:
|
||||
@@ -27,7 +27,7 @@ notifications:
|
||||
|
||||
env:
|
||||
global:
|
||||
- PROVIDER_VERSION=1.21.3
|
||||
- PROVIDER_VERSION=1.21.4
|
||||
|
||||
cache:
|
||||
directories:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.parabot</groupId>
|
||||
<artifactId>317-api-minified</artifactId>
|
||||
<version>1.21.3</version>
|
||||
<version>1.21.4</version>
|
||||
<name>Parabot 317-API-Minified</name>
|
||||
|
||||
<licenses>
|
||||
|
||||
@@ -52,7 +52,7 @@ public class MenuAction {
|
||||
* @param currentOutputIndex
|
||||
*/
|
||||
public static void setCurrentOutputIndex(int currentOutputIndex) {
|
||||
if (currentOutputIndex > outputs.length - 1) {
|
||||
if (currentOutputIndex > outputs.length) {
|
||||
currentOutputIndex = 0;
|
||||
}
|
||||
MenuAction.currentOutputIndex = currentOutputIndex;
|
||||
|
||||
Reference in New Issue
Block a user