When custom files are found, use the base files for default values.

This commit is contained in:
Matthew Miller
2019-11-16 22:37:14 +10:00
parent 87fb9f6d0e
commit 9a01bf9ab2
4 changed files with 21 additions and 11 deletions

View File

@ -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.