Skip to content

Commit

Permalink
Spotfix for Mass Fly being disabled breaking things
Browse files Browse the repository at this point in the history
  • Loading branch information
pheonix99 committed Jun 11, 2023
1 parent d735df7 commit 6594a2f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -371,3 +371,5 @@ FodyWeavers.xsd
/TomeOfTheFirebird/Assets/Spells/Dualcast.png
/TomeOfTheFirebird/Assets/Abilities/Dualcast.png
/TomeOfTheFirebird/Assets/Abilities/TwinSpell.png
/TomeOfTheFirebird/Assets/Abilities/DragoonDiveAbility.png
/TomeOfTheFirebird/Assets/Abilities/JumpAbility.png
5 changes: 5 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ NOW REQUIRES TabletopTweaks Core Module and ModMenu

## Changelog

### 1.4.16

Fix Mass Fly being disabled making things explode


### 1.4.15

Fixed Second Bloodline progression for Sage Eldritch Scion
Expand Down
2 changes: 1 addition & 1 deletion TomeOfTheFirebird/Info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Id": "TomeOfTheFirebird",
"DisplayName": "Tome Of The Firebird",
"Author": "pheonix99",
"Version": "1.4.15",
"Version": "1.4.16",
"ManagerVersion": "0.21.3",
"AssemblyName": "TomeOfTheFirebird.dll",
"EntryMethod": "TomeOfTheFirebird.Main.Load",
Expand Down
2 changes: 1 addition & 1 deletion TomeOfTheFirebird/New Content/Spells/Fly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static void Make()
else
{
AbilityConfigurator.New("FlySpell", spellGUID.ToString()).Configure();
AbilityConfigurator.New("MassFlySpell", spellGUID.ToString()).Configure();
AbilityConfigurator.New("MassFlySpell", massSpellGUID.ToString()).Configure();
AbilityConfigurator.New("FlySpellTouch", touchGUID.ToString()).Configure();

BuffConfigurator.New("FlyBuff", buffGUID.ToString()).Configure();
Expand Down

0 comments on commit 6594a2f

Please sign in to comment.