Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Renzo904 committed Jan 13, 2025
1 parent 6ef43a8 commit 8342b81
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TekaTeka/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace TekaTeka
public class Plugin : BasePlugin
{
public const string ModName = "TekaTeka";
public const string ModVersion = "1.0.1";
public const string ModVersion = "1.1.0";

public static Plugin Instance;
private Harmony _harmony = null;
Expand Down
5 changes: 5 additions & 0 deletions TekaTeka/Plugins/CustomSongLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ public static void InitializeLoader()
{
Directory.CreateDirectory(songsPath);
}

if (!Directory.Exists(Path.Combine(songsPath, "TJAsongs")))
{
Directory.CreateDirectory(Path.Combine(songsPath, "TJAsongs"));
}
}

#if DEBUG
Expand Down
2 changes: 1 addition & 1 deletion TekaTeka/TekaTeka.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ModName>TekaTeka</ModName>
<ModVersion>1.0.1</ModVersion>
<ModVersion>1.1.0</ModVersion>
<Description>A Rhythm Festival Custom Song Loader</Description>
</PropertyGroup>

Expand Down

0 comments on commit 8342b81

Please sign in to comment.