Skip to content

Commit

Permalink
Linter pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Vek17 committed Dec 24, 2024
1 parent 621c6fb commit 2b6a0d2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
using Kingmaker.Blueprints.Items.Armors;
using Kingmaker.Blueprints.JsonSystem;
using Kingmaker.Enums;
using Kingmaker.PubSubSystem;
using Kingmaker.UnitLogic.Mechanics;
using Kingmaker.UnitLogic;
using Kingmaker;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TabletopTweaks.Core.NewRules;
using Kingmaker.Blueprints.JsonSystem;

namespace TabletopTweaks.Core.NewComponents.AbilitySpecific {
[TypeId("cf98f0d59230406d99ec6d88fc639d41")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
using Kingmaker.Blueprints;
using Kingmaker.Blueprints.Facts;
using Kingmaker.Blueprints.Items.Ecnchantments;
using Kingmaker.Blueprints.JsonSystem;
using Kingmaker.Items;
using Kingmaker.Items.Slots;
using Kingmaker.PubSubSystem;
using Kingmaker.UI.GenericSlot;
using Kingmaker.UnitLogic;
using Kingmaker.UnitLogic.Buffs.Components;
using Newtonsoft.Json;
using System.Collections.Generic;
using UnityEngine.Serialization;
using UnityEngine;
using Kingmaker.UnitLogic.FactLogic;
using System.Collections.Generic;
using System.Linq;
using Kingmaker.Blueprints.Facts;
using Kingmaker.Blueprints.JsonSystem;
using UnityEngine;
using UnityEngine.Serialization;

namespace TabletopTweaks.Core.NewComponents.OwlcatReplacements {
[AllowedOn(typeof(BlueprintUnitFact), false)]
Expand Down
4 changes: 0 additions & 4 deletions TabletopTweaks-Core/NewComponents/SpellCastersOnslaught.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
using Kingmaker.UnitLogic.Abilities.Blueprints;
using Kingmaker.UnitLogic.Mechanics;
using Kingmaker.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TabletopTweaks.Core.NewComponents {
[TypeId("b5385c03dd58459aa33cc7ef5dde7648")]
Expand Down
2 changes: 1 addition & 1 deletion TabletopTweaks-Core/Utilities/DLCTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static bool HasDLC(int number) {
6 => Dlc6,
_ => null
};
if(DLC == null) { return false; }
if (DLC == null) { return false; }
StoreManager.RefreshDLCs(new BlueprintDlc[] { DLC });
return DLC.IsAvailable;
}
Expand Down
2 changes: 1 addition & 1 deletion TabletopTweaks-Core/Utilities/MountTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static class RaceOptions {
public static BlueprintRaceReference Mongrelman => BlueprintTools.GetBlueprintReference<BlueprintRaceReference>("daca06a3f3355664bba1e87e67f3b5b3");//Normal
public static BlueprintRaceReference Oread => BlueprintTools.GetBlueprintReference<BlueprintRaceReference>("4d4555326b9b7144f93be1ea61337cd7");
public static BlueprintRaceReference Tiefling => BlueprintTools.GetBlueprintReference<BlueprintRaceReference>("5c4e42124dc2b4647af6e36cf2590500");//Normal
//Weird options
//Weird options
public static BlueprintRaceReference Android => BlueprintTools.GetBlueprintReference<BlueprintRaceReference>("d1d114f539b74468b157ac69c275f266");//Normal
public static BlueprintRaceReference AscendingSuccubus => BlueprintTools.GetBlueprintReference<BlueprintRaceReference>("5e464d1d5fd0e7a4380b6ce60ef2c83b");//Normal

Expand Down

0 comments on commit 2b6a0d2

Please sign in to comment.