From 121d935315dfe8b13344ce89b3b9645de7ab111d Mon Sep 17 00:00:00 2001 From: md678685 Date: Sat, 13 Oct 2018 15:30:19 +0100 Subject: [PATCH] Implement missing FakeServer methods --- .../test/com/earth2me/essentials/FakeServer.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Essentials/test/com/earth2me/essentials/FakeServer.java b/Essentials/test/com/earth2me/essentials/FakeServer.java index 339335f4a..1647c0a64 100644 --- a/Essentials/test/com/earth2me/essentials/FakeServer.java +++ b/Essentials/test/com/earth2me/essentials/FakeServer.java @@ -443,6 +443,16 @@ public class FakeServer implements Server { throw new UnsupportedOperationException("Not supported yet."); } + @Override + public ItemStack createExplorerMap(World world, Location location, StructureType structureType) { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public ItemStack createExplorerMap(World world, Location location, StructureType structureType, int radius, boolean findUnexplored) { + throw new UnsupportedOperationException("Not supported yet."); + } + @Override public boolean getAllowFlight() { throw new UnsupportedOperationException("Not supported yet.");