You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a solution for the correct recognition of the Primalist and Mage support.
First I deleted Lifegiving Veil from the abilityrole table and added Corrosive Spores. The problem with Lifegiving Veil is that you can already get it with 8 points and Archont (Support) as well as Arbiter (Tank) use this ability and not be recognized correctly as Tank or Support.
For the Primalist I added the ability Hastening Vigor by which a Primalist support can be clearly identified.
My local tests with different logfiles were successful with the changes.
SQL for the changes:
DELETE FROM `prancingturtledb`.`abilityrole` WHERE `Id`=43;
INSERT INTO `prancingturtledb`.`abilityrole` (`AbilityLogId`, `AbilityName`, `Soul`, `RoleIconId`, `PlayerClassId`) VALUES ('1604872421', 'Corrosive Spores', 'Chloromancer', '2', '2');
INSERT INTO `prancingturtledb`.`abilityrole` (`AbilityLogId`, `AbilityName`, `Soul`, `RoleIconId`, `PlayerClassId`) VALUES ('1692284998', 'Hastening Vigor', 'Mystic', '3', '5');
The text was updated successfully, but these errors were encountered:
I found a solution for the correct recognition of the Primalist and Mage support.
First I deleted Lifegiving Veil from the abilityrole table and added Corrosive Spores. The problem with Lifegiving Veil is that you can already get it with 8 points and Archont (Support) as well as Arbiter (Tank) use this ability and not be recognized correctly as Tank or Support.
For the Primalist I added the ability Hastening Vigor by which a Primalist support can be clearly identified.
My local tests with different logfiles were successful with the changes.
SQL for the changes:
The text was updated successfully, but these errors were encountered: