-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: initial work for minecraft 1.21.0.03 * feat: adapt blocks * feat: adapt items * feat: update dependencies * feat: adapt container for 1.21 * feat: adapt protocol changes * feat: update block_correct_tool_special.nbt and block_material_data.nbt * feat: add new enchantment types in 1.21 * fix: fix a missing enchantment type declaration * feat: add new gamerules in 1.21 * fix: fix null pointer if "onDimensionSet" is empty * fix: fix player joining
- Loading branch information
Showing
219 changed files
with
31,911 additions
and
12,192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/BlockLargeFernBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockLargeFernBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/BlockLilacBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockLilacBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/BlockPeonyBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockPeonyBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/BlockRoseBushBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockRoseBushBehavior extends BlockBehavior { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/BlockSunflowerBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockSunflowerBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/BlockTallGrassBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockTallGrassBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...c/main/java/org/allaymc/api/block/interfaces/coralblock/BlockBrainCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockBrainCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
.../main/java/org/allaymc/api/block/interfaces/coralblock/BlockBubbleCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockBubbleCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...in/java/org/allaymc/api/block/interfaces/coralblock/BlockDeadBrainCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockDeadBrainCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...n/java/org/allaymc/api/block/interfaces/coralblock/BlockDeadBubbleCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockDeadBubbleCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...ain/java/org/allaymc/api/block/interfaces/coralblock/BlockDeadFireCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockDeadFireCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...ain/java/org/allaymc/api/block/interfaces/coralblock/BlockDeadHornCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockDeadHornCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...ain/java/org/allaymc/api/block/interfaces/coralblock/BlockDeadTubeCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockDeadTubeCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...rc/main/java/org/allaymc/api/block/interfaces/coralblock/BlockFireCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockFireCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...rc/main/java/org/allaymc/api/block/interfaces/coralblock/BlockHornCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockHornCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...rc/main/java/org/allaymc/api/block/interfaces/coralblock/BlockTubeCoralBlockBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.coralblock; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockTubeCoralBlockBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/slab/BlockBrickSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockBrickSlabBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...API/src/main/java/org/allaymc/api/block/interfaces/slab/BlockCobblestoneSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockCobblestoneSlabBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...API/src/main/java/org/allaymc/api/block/interfaces/slab/BlockNetherBrickSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockNetherBrickSlabBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...PI/src/main/java/org/allaymc/api/block/interfaces/slab/BlockPetrifiedOakSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockPetrifiedOakSlabBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
Allay-API/src/main/java/org/allaymc/api/block/interfaces/slab/BlockQuartzSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockQuartzSlabBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...y-API/src/main/java/org/allaymc/api/block/interfaces/slab/BlockSandstoneSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockSandstoneSlabBehavior extends BlockBehavior { | ||
} |
10 changes: 10 additions & 0 deletions
10
...API/src/main/java/org/allaymc/api/block/interfaces/slab/BlockSmoothStoneSlabBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.allaymc.api.block.interfaces.slab; | ||
|
||
import org.allaymc.api.block.BlockBehavior; | ||
|
||
/** | ||
* @author daoge_cmd <br> | ||
* Allay Project <br> | ||
*/ | ||
public interface BlockSmoothStoneSlabBehavior extends BlockBehavior { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.