mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-19 10:25:00 +00:00
Handle null World cases for EditSession when actor is console.
It actually should never be null, but old code does it.
This commit is contained in:
parent
0148e8bcc6
commit
69460094b8
@ -73,8 +73,7 @@ public class EditSessionEvent extends Event {
|
||||
* @param maxBlocks the maximum number of block changes
|
||||
* @param stage the stage
|
||||
*/
|
||||
public EditSessionEvent(World world, Actor actor, int maxBlocks, Stage stage) {
|
||||
checkNotNull(world);
|
||||
public EditSessionEvent(@Nullable World world, Actor actor, int maxBlocks, Stage stage) {
|
||||
this.world = world;
|
||||
this.actor = actor;
|
||||
this.maxBlocks = maxBlocks;
|
||||
@ -95,7 +94,7 @@ public class EditSessionEvent extends Event {
|
||||
*
|
||||
* @return the world
|
||||
*/
|
||||
public World getWorld() {
|
||||
public @Nullable World getWorld() {
|
||||
return world;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user