Skip to content

Commit

Permalink
Merge pull request #1 from Ahriana/patch-2
Browse files Browse the repository at this point in the history
ModManager support
  • Loading branch information
MeepsKitten authored Feb 14, 2021
2 parents 4caf86e + c7959a0 commit 060bba5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions AudicaMod/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany(GunExtras.BuildInfo.Company)]
[assembly: AssemblyProduct(GunExtras.BuildInfo.Name)]
[assembly: AssemblyProduct("GunExtras")]
[assembly: AssemblyCopyright("Created by " + GunExtras.BuildInfo.Author)]
[assembly: AssemblyTrademark(GunExtras.BuildInfo.Company)]
[assembly: AssemblyCulture("")]
Expand All @@ -23,4 +23,4 @@
// Create and Setup a MelonModGame to mark a Mod as Universal or Compatible with specific Games.
// If no MelonModGameAttribute is found or any of the Values for any MelonModGame on the Mod is null or empty it will be assumed the Mod is Universal.
// Values for MelonModGame can be found in the Game's app.info file or printed at the top of every log directly beneath the Unity version.
[assembly: MelonGame("Harmonix Music Systems, Inc.", "Audica")]
[assembly: MelonGame("Harmonix Music Systems, Inc.", "Audica")]
2 changes: 1 addition & 1 deletion AudicaMod/src/GunExtras.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static class BuildInfo
public const string Name = "Gun Extras"; // Name of the Mod. (MUST BE SET)
public const string Author = "MeepsKitten"; // Author of the Mod. (Set as null if none)
public const string Company = null; // Company that made the Mod. (Set as null if none)
public const string Version = "1.0"; // Version of the Mod. (MUST BE SET)
public const string Version = "1.0.2"; // Version of the Mod. (MUST BE SET)
public const string DownloadLink = null; // Download Link for the Mod. (Set as null if none)
}

Expand Down

0 comments on commit 060bba5

Please sign in to comment.