Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-18 20:40:08 +01:00
Added world.spawnTree(), world.spawnBigTree().
Dieser Commit ist enthalten in:
Ursprung
fe34bbbb10
Commit
b2812b74d4
@ -3,9 +3,11 @@ package org.bukkit.craftbukkit;
|
|||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.Random;
|
||||||
|
import net.minecraft.server.WorldGenBigTree;
|
||||||
|
import net.minecraft.server.WorldGenTrees;
|
||||||
import net.minecraft.server.WorldServer;
|
import net.minecraft.server.WorldServer;
|
||||||
import net.minecraft.server.EntityArrow;
|
import net.minecraft.server.EntityArrow;
|
||||||
|
|
||||||
import org.bukkit.ArrowEntity;
|
import org.bukkit.ArrowEntity;
|
||||||
import org.bukkit.Block;
|
import org.bukkit.Block;
|
||||||
import org.bukkit.Chunk;
|
import org.bukkit.Chunk;
|
||||||
@ -18,6 +20,8 @@ public class CraftWorld implements World {
|
|||||||
private final Map<BlockCoordinate, Block> blockCache = new HashMap<BlockCoordinate, Block>();
|
private final Map<BlockCoordinate, Block> blockCache = new HashMap<BlockCoordinate, Block>();
|
||||||
private final WorldServer world;
|
private final WorldServer world;
|
||||||
|
|
||||||
|
private static final Random rand = new Random();
|
||||||
|
|
||||||
public CraftWorld(WorldServer world) {
|
public CraftWorld(WorldServer world) {
|
||||||
this.world = world;
|
this.world = world;
|
||||||
}
|
}
|
||||||
@ -84,6 +88,18 @@ public class CraftWorld implements World {
|
|||||||
return new CraftArrowEntity(world.getServer(), arrow);
|
return new CraftArrowEntity(world.getServer(), arrow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean generateTree(Location loc) {
|
||||||
|
WorldGenTrees treeGen = new WorldGenTrees();
|
||||||
|
return treeGen.a(world, rand,
|
||||||
|
loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean generateBigTree(Location loc) {
|
||||||
|
WorldGenBigTree treeGen = new WorldGenBigTree();
|
||||||
|
return treeGen.a(world, rand,
|
||||||
|
loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "CraftWorld";
|
return "CraftWorld";
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren