mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
Add missing getRecipe(NamespacedKey) method to FakeServer (#3530)
This commit is contained in:
parent
9aec89f381
commit
b7c18d0785
1 changed files with 5 additions and 0 deletions
|
@ -913,6 +913,11 @@ public class FakeServer implements Server {
|
||||||
throw new UnsupportedOperationException("Not supported yet.");
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Recipe getRecipe(NamespacedKey namespacedKey) {
|
||||||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Iterator<Recipe> recipeIterator() {
|
public Iterator<Recipe> recipeIterator() {
|
||||||
throw new UnsupportedOperationException("Not supported yet.");
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
|
Loading…
Reference in a new issue