mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Fix missing return type of World#submit.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user