allow pve mode toons to cast summon

This commit is contained in:
2025-03-11 20:24:03 -05:00
parent 35ab20701c
commit 887501c040
+2
View File
@@ -240,6 +240,7 @@ public class ActionsBase {
//Add blocked types here
public boolean blocked(AbstractWorldObject awo, PowersBase pb, int trains, AbstractCharacter source) {
if(!pb.getName().contains("Summon")) {
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
AbstractCharacter target = (AbstractCharacter) awo;
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
@@ -251,6 +252,7 @@ public class ActionsBase {
}
}
}
}
if(pb.isChant)
return false;