Fixing missing 1.10 support
Dieser Commit ist enthalten in:
Ursprung
28db3c0844
Commit
6cab302ac0
53
SpigotCore_10/pom.xml
Normale Datei
53
SpigotCore_10/pom.xml
Normale Datei
@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>SpigotCore</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>SpigotCore_10</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<sourceDirectory>src</sourceDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src</directory>
|
||||||
|
<excludes>
|
||||||
|
<exclude>**/*.java</exclude>
|
||||||
|
<exclude>**/*.kt</exclude>
|
||||||
|
</excludes>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>Spigot</artifactId>
|
||||||
|
<version>1.10</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>WorldEdit</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>SpigotCore_API</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>SpigotCore_9</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
13
SpigotCore_10/src/de/steamwar/inventory/SWInventory_10.java
Normale Datei
13
SpigotCore_10/src/de/steamwar/inventory/SWInventory_10.java
Normale Datei
@ -0,0 +1,13 @@
|
|||||||
|
package de.steamwar.inventory;
|
||||||
|
|
||||||
|
import org.bukkit.craftbukkit.v1_10_R1.inventory.CraftInventoryCustom;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.inventory.Inventory;
|
||||||
|
|
||||||
|
class SWInventory_10 {
|
||||||
|
private SWInventory_10(){}
|
||||||
|
|
||||||
|
static Inventory get(Player player, int size, String title){
|
||||||
|
return new CraftInventoryCustom(player, size, title);
|
||||||
|
}
|
||||||
|
}
|
21
SpigotCore_10/src/de/steamwar/inventory/SWItem_10.java
Normale Datei
21
SpigotCore_10/src/de/steamwar/inventory/SWItem_10.java
Normale Datei
@ -0,0 +1,21 @@
|
|||||||
|
package de.steamwar.inventory;
|
||||||
|
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.OfflinePlayer;
|
||||||
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
|
|
||||||
|
class SWItem_10 {
|
||||||
|
private SWItem_10(){}
|
||||||
|
|
||||||
|
static Material getMaterial(String material){
|
||||||
|
return SWItem_8.getMaterial(material);
|
||||||
|
}
|
||||||
|
|
||||||
|
static Material getDye(){
|
||||||
|
return SWItem_8.getDye();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void setSkullOwner(OfflinePlayer player, SkullMeta meta){
|
||||||
|
SWItem_8.setSkullOwner(player, meta);
|
||||||
|
}
|
||||||
|
}
|
23
SpigotCore_10/src/de/steamwar/sql/Schematic_10.java
Normale Datei
23
SpigotCore_10/src/de/steamwar/sql/Schematic_10.java
Normale Datei
@ -0,0 +1,23 @@
|
|||||||
|
package de.steamwar.sql;
|
||||||
|
|
||||||
|
import com.sk89q.worldedit.extent.clipboard.Clipboard;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
|
||||||
|
class Schematic_10 {
|
||||||
|
private Schematic_10(){}
|
||||||
|
|
||||||
|
static byte[] getPlayerClipboard(Player player) throws IOException, NoClipboardException {
|
||||||
|
return Schematic_8.getPlayerClipboard(player);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void setPlayerClipboard(Player player, InputStream is) throws IOException {
|
||||||
|
Schematic_8.setPlayerClipboard(player, is);
|
||||||
|
}
|
||||||
|
|
||||||
|
static Clipboard getClipboard(InputStream is) throws IOException {
|
||||||
|
return Schematic_8.getClipboard(is);
|
||||||
|
}
|
||||||
|
}
|
7
SpigotCore_Main/src/de/steamwar/sql/DownloadSchematic.java
Normale Datei
7
SpigotCore_Main/src/de/steamwar/sql/DownloadSchematic.java
Normale Datei
@ -0,0 +1,7 @@
|
|||||||
|
package de.steamwar.sql;
|
||||||
|
|
||||||
|
public class DownloadSchematic {
|
||||||
|
public DownloadSchematic(Schematic schem){
|
||||||
|
SQL.update("");
|
||||||
|
}
|
||||||
|
}
|
In neuem Issue referenzieren
Einen Benutzer sperren