Skip to content

Commit

Permalink
Bugfix rml (#43)
Browse files Browse the repository at this point in the history
* uncommented patching in RML variant
mpmxyz authored Dec 24, 2023
1 parent db166c8 commit 0d948c8
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SampleMod.csproj
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
<Product>SampleMod</Product>
<Description>A sample Resonite Mod</Description>
<Copyright>CC0</Copyright>
<Version>1.1.1</Version>
<Version>1.1.2</Version>
<PackageProjectUrl>$(PROJECT_URL)</PackageProjectUrl>
<PackageReleaseNotes>$(RELEASE_NOTES)</PackageReleaseNotes>
<PackageTags>Resonite</PackageTags>
4 changes: 2 additions & 2 deletions SampleModRML.cs
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ public class SampleModRML : ResoniteMod, ISampleMod
{
public override string Name => "SampleMod";
public override string Author => "mpmxyz";
public override string Version => "1.1.1"; //Version of the mod, should match the AssemblyVersion
public override string Version => "1.1.2"; //Version of the mod, should match the AssemblyVersion
public override string Link => "https://github.com/mpmxyz/ResoniteSampleMod";


@@ -25,7 +25,7 @@ public override void OnEngineInit()
{
Config = GetConfiguration(); //Get this mods' current ModConfiguration
Config.Save(true); //If you'd like to save the default config values to file
//Patches.Apply(this);
PatchesHarmony.Apply(this);

//Various log methods provided by the mod loader, below is an example of how they will look
//3:14:42 AM.069 ( -1 FPS) [INFO] [ResoniteModLoader/SampleMod] a regular log

0 comments on commit 0d948c8

Please sign in to comment.