Might just be me, but im having trouble getting OnRaidableBaseCompleted to fire.
[PluginReference]
private Plugin RaidableBases;
private void OnRaidableBaseCompleted(Vector3 raidPos, int mode, bool allowPVP, string id, float spawnTime, float despawnTime, float loadTime, ulong ownerId, BasePlayer owner, List<BasePlayer> raiders, List<BasePlayer> intruders, List<BaseEntity> entities)
{
foreach(var r in raiders)
{
Puts(r.displayName + " has finished a raid!");
}
}
i get nothing. In chat it says the player(s) beat the raid, but this never fires.
Am I missing something? Or am i just an idiot?