diff --git a/src/org/apollo/game/model/World.java b/src/org/apollo/game/model/World.java index 3374eb10..c1cf8898 100644 --- a/src/org/apollo/game/model/World.java +++ b/src/org/apollo/game/model/World.java @@ -361,9 +361,10 @@ public final class World { * Submits the specified {@link Event}, passing it to the listeners.. * * @param event The Event. + * @return {@code true} if the Event should proceed, {@code false} if not. */ - public void submit(Event event) { - events.notify(event); + public boolean submit(Event event) { + return events.notify(event); } /**