Pets no longer count as summoning for split combat level calculation

This commit is contained in:
Player Name
2023-08-23 09:11:47 +00:00
committed by Ryan
parent 9290d67000
commit 00af62e449
@@ -446,7 +446,7 @@ public final class FamiliarManager {
* @return The usingSummoning.
*/
public boolean isUsingSummoning() {
return hasPouch || hasFamiliar();
return hasPouch || (hasFamiliar() && !hasPet());
}
/**