geforkt von Mirrors/FastAsyncWorldEdit
This should either fix errors people have been having with Trove, or consistently break Spout
Probably the first
Dieser Commit ist enthalten in:
Ursprung
947c37f85e
Commit
ad9d85e50f
@ -196,6 +196,7 @@ public class DocumentationPrinter {
|
|||||||
stream.println("name: WorldEdit");
|
stream.println("name: WorldEdit");
|
||||||
stream.println("main: com.sk89q.worldedit.bukkit.WorldEditPlugin");
|
stream.println("main: com.sk89q.worldedit.bukkit.WorldEditPlugin");
|
||||||
stream.println("version: ${project.version}");
|
stream.println("version: ${project.version}");
|
||||||
|
stream.println("softdepend: [Spout] #hack to fix trove errors");
|
||||||
|
|
||||||
stream.println();
|
stream.println();
|
||||||
stream.println();
|
stream.println();
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
name: WorldEdit
|
name: WorldEdit
|
||||||
main: com.sk89q.worldedit.bukkit.WorldEditPlugin
|
main: com.sk89q.worldedit.bukkit.WorldEditPlugin
|
||||||
version: ${project.version}
|
version: ${project.version}
|
||||||
|
softdepend: [Spout] #hack to fix trove errors
|
||||||
|
|
||||||
# Permissions aren't here. Read http://wiki.sk89q.com/wiki/WEPIF/DinnerPerms
|
# Permissions aren't here. Read http://wiki.sk89q.com/wiki/WEPIF/DinnerPerms
|
||||||
# for how WorldEdit permissions actually work.
|
# for how WorldEdit permissions actually work.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package com.sk89q.wepif;
|
package com.sk89q.wepif;
|
||||||
|
|
||||||
|
import org.bukkit.Location;
|
||||||
import org.bukkit.OfflinePlayer;
|
import org.bukkit.OfflinePlayer;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.permissions.Permissible;
|
import org.bukkit.permissions.Permissible;
|
||||||
@ -131,6 +132,10 @@ public class TestOfflinePermissible implements OfflinePlayer, Permissible {
|
|||||||
throw new UnsupportedOperationException("Not supported yet.");
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Location getBedSpawnLocation() {
|
||||||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
}
|
||||||
|
|
||||||
public Map<String, Object> serialize() {
|
public Map<String, Object> serialize() {
|
||||||
throw new UnsupportedOperationException("Not supported yet.");
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren