Code:
# When changing the period and the owner of the Seal, the spawn and the type of mobs change (Off-like).
# To always spawn only mobs with a drop of stones - SevenSingStaticEventPeriodSpawn = True
SevenSingStaticEventPeriodSpawn = false
When set to true, prevents Lilith/Anakim from spawning even if all SSQ conditions are met.
Servers code:
Current with SevenSingStaticEventPeriodSpawn = true
Code:
case 3: // Seal Validation Period
if (Config.ALT_SEVEN_SING_STATIC_EVENT_PERIOD_SPAWN) {
SpawnManager.this.spawn(SpawnManager.cB); // [ssq_event] - ALWAYS spawns
return; // EXITS HERE - never reaches seal-specific spawns!
}
// This code NEVER executes:
switch (SevenSigns.getInstance().getSealOwner(1)) {
case 2: // Dawn controls Seal of Avarice
SpawnManager.this.spawn(SpawnManager.cE); // [ssq_seal1_dawn] - Lilith
break;
}
I'm unable to currently post ticket on redmine, hence posting in the thread.


