double spawn radius

This commit is contained in:
aliasless 2019-11-25 13:39:27 -08:00
parent 39fa67e481
commit 3639ba5c92
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ public class VFO {
while (true) {
Vector3d new_spawn_offset = new Vector3d(
ThreadLocalRandom.current().nextInt(-128, 128 + 1),
ThreadLocalRandom.current().nextInt(-256, 256 + 1),
0,
ThreadLocalRandom.current().nextInt(-128, 128 + 1));
ThreadLocalRandom.current().nextInt(-256, 256 + 1));
Vector3d new_spawn = event.getToTransform().getExtent().getSpawnLocation().getPosition().add(new_spawn_offset);