Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
Merge pull request #440 from gamerforEA/master
Fix BlockType and ItemType registration for Sponge distributive
Dieser Commit ist enthalten in:
Commit
976a92d5ea
@ -139,11 +139,17 @@ public class SpongeWorldEdit {
|
||||
|
||||
for (BlockType blockType : Sponge.getRegistry().getAllOf(BlockType.class)) {
|
||||
// TODO Handle blockstate stuff
|
||||
com.sk89q.worldedit.world.block.BlockTypes.register(new com.sk89q.worldedit.world.block.BlockType(blockType.getId()));
|
||||
String id = blockType.getId();
|
||||
if (!com.sk89q.worldedit.world.block.BlockType.REGISTRY.keySet().contains(id)) {
|
||||
com.sk89q.worldedit.world.block.BlockTypes.register(new com.sk89q.worldedit.world.block.BlockType(id));
|
||||
}
|
||||
}
|
||||
|
||||
for (ItemType itemType : Sponge.getRegistry().getAllOf(ItemType.class)) {
|
||||
ItemTypes.register(new com.sk89q.worldedit.world.item.ItemType(itemType.getId()));
|
||||
String id = itemType.getId();
|
||||
if (!com.sk89q.worldedit.world.item.ItemType.REGISTRY.keySet().contains(id)) {
|
||||
ItemTypes.register(new com.sk89q.worldedit.world.item.ItemType(id));
|
||||
}
|
||||
}
|
||||
|
||||
WorldEdit.getInstance().getPlatformManager().register(platform);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren