mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-04 12:06:41 +00:00
When custom files are found, use the base files for default values.
This commit is contained in:
@ -19,6 +19,7 @@
|
||||
|
||||
package com.sk89q.worldedit.regions;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
import com.sk89q.worldedit.IncompleteRegionException;
|
||||
import com.sk89q.worldedit.LocalSession;
|
||||
import com.sk89q.worldedit.extension.platform.Actor;
|
||||
@ -158,7 +159,9 @@ public interface RegionSelector {
|
||||
* @return a list of lines describing the region
|
||||
*/
|
||||
@Deprecated
|
||||
List<String> getInformationLines();
|
||||
default List<String> getInformationLines() {
|
||||
return Lists.newArrayList();
|
||||
};
|
||||
|
||||
/**
|
||||
* Get lines of information about the selection.
|
||||
|
Reference in New Issue
Block a user