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

@ -196,6 +196,7 @@ public class DocumentationPrinter {
stream.println("name: WorldEdit");
stream.println("main: com.sk89q.worldedit.bukkit.WorldEditPlugin");
stream.println("version: ${project.version}");
stream.println("softdepend: [Spout] #hack to fix trove errors");
stream.println();
stream.println();

View File

@ -1,6 +1,7 @@
name: WorldEdit
main: com.sk89q.worldedit.bukkit.WorldEditPlugin
version: ${project.version}
softdepend: [Spout] #hack to fix trove errors
# Permissions aren't here. Read http://wiki.sk89q.com/wiki/WEPIF/DinnerPerms
# for how WorldEdit permissions actually work.

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.");
}