Skip to content

Commit

Permalink
Fix for v40
Browse files Browse the repository at this point in the history
  • Loading branch information
doombubbles committed Dec 6, 2023
1 parent 0aab902 commit c34f642
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:


- name: Upload Mod DLL
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v3
with:
name: ${{ env.PROJECT_NAME }}.dll
path: ${{ env.BLOONSTD6 }}/Mods/${{ env.PROJECT_NAME }}.dll
Expand Down
2 changes: 1 addition & 1 deletion LATEST.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Recompiled for BTD6 v39
- Fixed for BTD6 v40.0
4 changes: 2 additions & 2 deletions MegaKnowledges/Primary/GorillaGlue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public override void Apply(TowerModel model)
var damageModel = projectileModel.GetDamageModel();
if (damageModel == null)
{
damageModel = new DamageModel("DamageModel_", amount, 0f,
true, false, true, BloonProperties.None, BloonProperties.None);
damageModel = new DamageModel("DamageModel_", amount, 0f, true, false, true, BloonProperties.None,
BloonProperties.None, false);
projectileModel.AddBehavior(damageModel);
}
else
Expand Down
4 changes: 2 additions & 2 deletions ModHelperData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

public static class ModHelperData
{
public const string WorksOnVersion = "39.0";
public const string Version = "1.2.4";
public const string WorksOnVersion = "40.0";
public const string Version = "1.2.5";
public const string Name = "Mega Knowledge";

public const string Description =
Expand Down

0 comments on commit c34f642

Please sign in to comment.