Merge pull request #2496 from bonii-xx/universal_bucket

Fix WorldEvent.PotentialSpawns Event passing the list instance of the…
This commit is contained in:
LexManos 2016-02-22 11:16:55 -08:00
commit b009546a94
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class WorldEvent extends Event
this.type = type;
if (oldList != null)
{
this.list = oldList;
this.list = new ArrayList<SpawnListEntry>(oldList);
}
else
{