Merge remote-tracking branch 'origin/0908-merge' into 0908-merge
This commit is contained in:
@@ -623,7 +623,8 @@ public interface Widget
|
||||
*/
|
||||
Object[] getOnLoadListener();
|
||||
|
||||
Object[] getOnInvTransmitListener();
|
||||
Object[] getOnInvTransmit();
|
||||
|
||||
|
||||
/**
|
||||
* Returns the archive id of the font used
|
||||
|
||||
@@ -60,7 +60,7 @@ public class BankSearch
|
||||
return;
|
||||
}
|
||||
|
||||
Object[] scriptArgs = bankContainer.getOnInvTransmitListener();
|
||||
Object[] scriptArgs = bankContainer.getOnInvTransmit();
|
||||
|
||||
if (scriptArgs == null)
|
||||
{
|
||||
|
||||
@@ -131,8 +131,7 @@ public class RuneLiteSplashScreen extends JFrame
|
||||
});
|
||||
}
|
||||
|
||||
public static void stage(double startProgress, double endProgress,
|
||||
String progressText, int done, int total)
|
||||
public static void stage(double startProgress, double endProgress, String progressText, int done, int total)
|
||||
{
|
||||
String progress = done + " / " + total;
|
||||
stage(startProgress + ((endProgress - startProgress) * done / total), progressText + " " + progress);
|
||||
|
||||
@@ -481,4 +481,8 @@ public interface RSWidget extends Widget
|
||||
|
||||
@Import("modelFrameCycle")
|
||||
int getModelFrameCycle();
|
||||
|
||||
@Import("onInvTransmit")
|
||||
@Override
|
||||
Object[] getOnInvTransmit();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user