geforkt von Mirrors/Paper
398f6983bd
Make "moved too quickly" limit configurable SpigotMC/Spigot@99a0a640e8 Undeprecate Player#updateInventory()V SpigotMC/Spigot@5c32e1cb48 Fetch complete profile for skull items, similarly to TileEntitySkull. SpigotMC/Spigot@33d758773e Move getDouble into the Spigot Configuration patch SpigotMC/Spigot@b5dd202af1 Add missing particle to particle API SpigotMC/Spigot@273c64bbad Log debug levels to the log file. SpigotMC/Spigot@348eae75f4 Fix PlayerItemDamageEvent (we already had this #badupstreamrelations) SpigotMC/Spigot@e207ea23cd Move hopper patch to top for PR180 SpigotMC/Spigot@abb775108d Don't be so spammy on Java 6 SpigotMC/Spigot@5abb82b1ca Apply NBTReadLimiter to more things SpigotMC/Spigot@408944e9f5
55 Zeilen
2.2 KiB
Diff
55 Zeilen
2.2 KiB
Diff
From 2c7348988b9714bd0a220946e62a03ba8f5944ef Mon Sep 17 00:00:00 2001
|
|
From: md_5 <git@md-5.net>
|
|
Date: Fri, 4 Jul 2014 13:28:45 +1000
|
|
Subject: [PATCH] Further Seed Customisation
|
|
|
|
Allow server admins that really want to to customise the seeds used in world generation even further.
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldGenLargeFeature.java b/src/main/java/net/minecraft/server/WorldGenLargeFeature.java
|
|
index 1e5efc4..72f5d10 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldGenLargeFeature.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldGenLargeFeature.java
|
|
@@ -53,7 +53,7 @@ public class WorldGenLargeFeature extends StructureGenerator {
|
|
|
|
int i1 = i / this.g;
|
|
int j1 = j / this.g;
|
|
- Random random = this.c.A(i1, j1, 14357617);
|
|
+ Random random = this.c.A(i1, j1, this.c.spigotConfig.largeFeatureSeed); // Spigot
|
|
|
|
i1 *= this.g;
|
|
j1 *= this.g;
|
|
diff --git a/src/main/java/net/minecraft/server/WorldGenVillage.java b/src/main/java/net/minecraft/server/WorldGenVillage.java
|
|
index 7ca18a1..8d1721a 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldGenVillage.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldGenVillage.java
|
|
@@ -52,7 +52,7 @@ public class WorldGenVillage extends StructureGenerator {
|
|
|
|
int i1 = i / this.g;
|
|
int j1 = j / this.g;
|
|
- Random random = this.c.A(i1, j1, 10387312);
|
|
+ Random random = this.c.A(i1, j1, this.c.spigotConfig.villageSeed); // Spigot
|
|
|
|
i1 *= this.g;
|
|
j1 *= this.g;
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index a81b7c9..fd79b25 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
@@ -317,4 +317,13 @@ public class SpigotWorldConfig
|
|
{
|
|
witherSpawnSoundRadius = getInt( "wither-spawn-sound-radius", 0 );
|
|
}
|
|
+
|
|
+ public int villageSeed;
|
|
+ public int largeFeatureSeed;
|
|
+ private void initWorldGenSeeds()
|
|
+ {
|
|
+ villageSeed = getInt( "seed-village", 10387312 );
|
|
+ largeFeatureSeed = getInt( "seed-feature", 14357617 );
|
|
+ log( "Custom Map Seeds: Village: " + villageSeed + " Feature: " + largeFeatureSeed );
|
|
+ }
|
|
}
|
|
--
|
|
1.9.1
|
|
|