Support initial spawns

This commit is contained in:
cyberpwn
2021-08-18 02:49:12 -04:00
parent 319cc8a5f9
commit 0e4b874994
2 changed files with 16 additions and 10 deletions

View File

@@ -45,6 +45,10 @@ public class IrisSpawner extends IrisRegistrant {
@Desc("The entity spawns to add")
private KList<IrisEntitySpawn> spawns = new KList<>();
@ArrayType(min = 1, type = IrisEntitySpawn.class)
@Desc("The entity spawns to add initially. EXECUTES PER CHUNK!")
private KList<IrisEntitySpawn> initialSpawns = new KList<>();
@Desc("The energy multiplier when calculating spawn energy usage")
private double energyMultiplier = 1;