add widget inv listener

This commit is contained in:
Lucwousin
2019-08-11 02:35:48 +02:00
parent 8a8ece3c7a
commit df0501f302
3 changed files with 7 additions and 2 deletions

View File

@@ -623,7 +623,8 @@ public interface Widget
*/
Object[] getOnLoadListener();
Object[] getOnInvTransmitListener();
Object[] getOnInvTransmit();
/**
* Returns the archive id of the font used

View File

@@ -60,7 +60,7 @@ public class BankSearch
return;
}
Object[] scriptArgs = bankContainer.getOnInvTransmitListener();
Object[] scriptArgs = bankContainer.getOnInvTransmit();
if (scriptArgs == null)
{

View File

@@ -481,4 +481,8 @@ public interface RSWidget extends Widget
@Import("modelFrameCycle")
int getModelFrameCycle();
@Import("onInvTransmit")
@Override
Object[] getOnInvTransmit();
}