diff --git a/TimeDependenceCounter/Properties/AssemblyInfo.cs b/TimeDependenceCounter/Properties/AssemblyInfo.cs index 3981f98..25878bc 100644 --- a/TimeDependenceCounter/Properties/AssemblyInfo.cs +++ b/TimeDependenceCounter/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0")] -[assembly: AssemblyFileVersion("1.0.0")] +[assembly: AssemblyVersion("1.0.2")] +[assembly: AssemblyFileVersion("1.0.2")] diff --git a/TimeDependenceCounter/TimeDependenceCounter.cs b/TimeDependenceCounter/TimeDependenceCounter.cs index 75d9154..a8815e4 100644 --- a/TimeDependenceCounter/TimeDependenceCounter.cs +++ b/TimeDependenceCounter/TimeDependenceCounter.cs @@ -48,7 +48,7 @@ public void OnNoteMiss(NoteData data) { } public void OnNoteCut(NoteData data, NoteCutInfo info) { - if (data.noteType == NoteType.Bomb || !info.allIsOK) return; + if (data.colorType == ColorType.None || !info.allIsOK) return; UpdateText(Math.Abs(info.cutNormal.z), info.saberType); } diff --git a/TimeDependenceCounter/TimeDependenceCounter.csproj b/TimeDependenceCounter/TimeDependenceCounter.csproj index f947cbd..670c3d3 100644 --- a/TimeDependenceCounter/TimeDependenceCounter.csproj +++ b/TimeDependenceCounter/TimeDependenceCounter.csproj @@ -46,6 +46,9 @@ F:\Steam\steamapps\common\Beat Saber\Libs\0Harmony.dll + + F:\Steam\steamapps\common\Beat Saber\Beat Saber_Data\Managed\BeatmapCore.dll + False F:\Steam\steamapps\common\Beat Saber\Plugins\BSML.dll @@ -53,6 +56,9 @@ F:\Steam\steamapps\common\Beat Saber\Plugins\Counters+.dll + + F:\Steam\steamapps\common\Beat Saber\Beat Saber_Data\Managed\GameplayCore.dll + diff --git a/TimeDependenceCounter/manifest.json b/TimeDependenceCounter/manifest.json index e68ca92..7cb49a3 100644 --- a/TimeDependenceCounter/manifest.json +++ b/TimeDependenceCounter/manifest.json @@ -3,11 +3,11 @@ "id": "TimeDependenceCounter", "name": "TimeDependenceCounter", "author": "PulseLane", - "version": "1.0.0", + "version": "1.0.2", "description": "Adds a counter showing the average of how time-dependent the cuts are", - "gameVersion": "1.11.1", + "gameVersion": "1.13.0", "dependsOn": { - "Counters+": "^2.0.0", + "Counters+": "^2.1.0", "BeatSaberMarkupLanguage": "^1.3.2", "BSIPA": "^4.1.0" },