Fix seed breaking on restarts

This commit is contained in:
Daniel Mills
2020-12-02 01:40:49 -05:00
parent ff6f76e018
commit 01a9a13402
3 changed files with 12 additions and 27 deletions

View File

@@ -44,11 +44,6 @@ public class RNG extends Random
return new RNG(sx + signature);
}
public RNG nextRNG()
{
return new RNG(nextLong());
}
public String s(int length)
{
StringBuilder sb = new StringBuilder();