mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-03 00:38:00 +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
|
language: java
|
||||||
|
|
||||||
jdk:
|
jdk:
|
||||||
- oraclejdk7
|
- openjdk7
|
||||||
- oraclejdk8
|
- oraclejdk8
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
@@ -27,7 +27,7 @@ notifications:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- PROVIDER_VERSION=1.21.3
|
- PROVIDER_VERSION=1.21.4
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>org.parabot</groupId>
|
<groupId>org.parabot</groupId>
|
||||||
<artifactId>317-api-minified</artifactId>
|
<artifactId>317-api-minified</artifactId>
|
||||||
<version>1.21.3</version>
|
<version>1.21.4</version>
|
||||||
<name>Parabot 317-API-Minified</name>
|
<name>Parabot 317-API-Minified</name>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ public class MenuAction {
|
|||||||
* @param currentOutputIndex
|
* @param currentOutputIndex
|
||||||
*/
|
*/
|
||||||
public static void setCurrentOutputIndex(int currentOutputIndex) {
|
public static void setCurrentOutputIndex(int currentOutputIndex) {
|
||||||
if (currentOutputIndex > outputs.length - 1) {
|
if (currentOutputIndex > outputs.length) {
|
||||||
currentOutputIndex = 0;
|
currentOutputIndex = 0;
|
||||||
}
|
}
|
||||||
MenuAction.currentOutputIndex = currentOutputIndex;
|
MenuAction.currentOutputIndex = currentOutputIndex;
|
||||||
|
|||||||
Reference in New Issue
Block a user