scriptvmmixin: change event firing order
This commit is contained in:
@@ -24,22 +24,22 @@
|
||||
*/
|
||||
package net.runelite.api.events;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.Value;
|
||||
import net.runelite.api.ScriptEvent;
|
||||
|
||||
/**
|
||||
* An event that is fired before the designated script is ran
|
||||
*/
|
||||
@Data
|
||||
@Value
|
||||
public class ScriptPreFired implements Event
|
||||
{
|
||||
/**
|
||||
* The script id of the invoked script
|
||||
*/
|
||||
private final int scriptId;
|
||||
int scriptId;
|
||||
|
||||
/**
|
||||
* The input of the script invoke, this will be null unless it is the root script
|
||||
*/
|
||||
private ScriptEvent scriptEvent;
|
||||
ScriptEvent scriptEvent;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user