forked from RepoMirrors/baritone
don't fail silently in the future
This commit is contained in:
parent
842e50adb9
commit
40da7b3734
|
@ -53,7 +53,7 @@ public interface IPath {
|
|||
* (as opposed to Path objects that are just constructed every frame for rendering)
|
||||
*/
|
||||
default IPath postProcess() {
|
||||
return this;
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -121,7 +121,7 @@ public interface IPath {
|
|||
* @return The result of this cut-off operation
|
||||
*/
|
||||
default IPath cutoffAtLoadedChunks() {
|
||||
return this;
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -133,7 +133,7 @@ public interface IPath {
|
|||
* @see Settings#pathCutoffFactor
|
||||
*/
|
||||
default IPath staticCutoff(Goal destination) {
|
||||
return this;
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue