mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-03 00:38:00 +00:00
Changed from int to string #getMessage
This commit is contained in:
@@ -6,6 +6,6 @@ public interface Interface {
|
|||||||
|
|
||||||
public int[] getStackSizes();
|
public int[] getStackSizes();
|
||||||
|
|
||||||
public int getMessage();
|
public String getMessage();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package org.rev317.min.randoms;
|
package org.rev317.min.randoms;
|
||||||
|
|
||||||
|
import org.parabot.core.Context;
|
||||||
import org.parabot.core.Core;
|
import org.parabot.core.Core;
|
||||||
import org.parabot.core.Directories;
|
import org.parabot.core.Directories;
|
||||||
import org.parabot.core.io.ProgressListener;
|
import org.parabot.core.io.ProgressListener;
|
||||||
@@ -33,8 +34,7 @@ public class Executer {
|
|||||||
try {
|
try {
|
||||||
URL url = myJar.toURI().toURL();
|
URL url = myJar.toURI().toURL();
|
||||||
URL[] urls = new URL[]{url};
|
URL[] urls = new URL[]{url};
|
||||||
// String server = Context.getInstance().getServerProviderInfo().getServerName();
|
String server = Context.getInstance().getServerProviderInfo().getServerName();
|
||||||
String server = "pkhonor";
|
|
||||||
|
|
||||||
URLClassLoader child = new URLClassLoader(urls, this.getClass().getClassLoader());
|
URLClassLoader child = new URLClassLoader(urls, this.getClass().getClassLoader());
|
||||||
Class<?> classToLoad = Class.forName("org.parabot.randoms.Core", true, child);
|
Class<?> classToLoad = Class.forName("org.parabot.randoms.Core", true, child);
|
||||||
|
|||||||
Reference in New Issue
Block a user