Update to Minecraft 1.21.2

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2024-10-23 02:15:00 +11:00
parent 68de2de253
commit cd27f1b0c7
62 changed files with 1914 additions and 156 deletions

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents an acacia boat.
*/
public interface AcaciaBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents an acacia chest boat.
*/
public interface AcaciaChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a bamboo chest raft.
*/
public interface BambooChestRaft extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a bamboo raft.
*/
public interface BambooRaft extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a birch boat.
*/
public interface BirchBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a birch chest boat.
*/
public interface BirchChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a cherry boat.
*/
public interface CherryBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a cherry chest boat.
*/
public interface CherryChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a dark oak boat.
*/
public interface DarkOakBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a dark oak chest boat.
*/
public interface DarkOakChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a jungle boat.
*/
public interface JungleBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a jungle chest boat.
*/
public interface JungleChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a mangrove boat.
*/
public interface MangroveBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a mangrove chest boat.
*/
public interface MangroveChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents an oak boat.
*/
public interface OakBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents an oak chest boat.
*/
public interface OakChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents an pale oak boat.
*/
public interface PaleOakBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents an pale oak chest boat.
*/
public interface PaleOakChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.Boat;
/**
* Represents a spruce boat.
*/
public interface SpruceBoat extends Boat {
}

View File

@@ -0,0 +1,9 @@
package org.bukkit.entity.boat;
import org.bukkit.entity.ChestBoat;
/**
* Represents a spruce chest boat.
*/
public interface SpruceChestBoat extends ChestBoat {
}

View File

@@ -0,0 +1,4 @@
/**
* Interfaces for various {@link org.bukkit.entity.Boat} types.
*/
package org.bukkit.entity.boat;