This should either fix errors people have been having with Trove, or consistently break Spout

Probably the first
This commit is contained in:
zml2008
2012-01-17 18:17:02 -08:00
parent 947c37f85e
commit ad9d85e50f
3 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package com.sk89q.wepif;
import org.bukkit.Location;
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;
import org.bukkit.permissions.Permissible;
@ -131,6 +132,10 @@ public class TestOfflinePermissible implements OfflinePlayer, Permissible {
throw new UnsupportedOperationException("Not supported yet.");
}
public Location getBedSpawnLocation() {
throw new UnsupportedOperationException("Not supported yet.");
}
public Map<String, Object> serialize() {
throw new UnsupportedOperationException("Not supported yet.");
}