Skip to content

Commit

Permalink
Updated mod / fixed breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
richardspence committed Apr 7, 2024
1 parent d5c9a08 commit c7d6385
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
10 changes: 4 additions & 6 deletions AutomationPlus/AutomationPlus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,13 @@
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OniStubs.1.0.2\lib\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
<HintPath>..\packages\OniStubs.2.0.0\lib\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp-firstpass, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OniStubs.1.0.2\lib\Assembly-CSharp-firstpass.dll</HintPath>
<Private>False</Private>
<HintPath>..\packages\OniStubs.2.0.0\lib\Assembly-CSharp-firstpass.dll</HintPath>
</Reference>
<Reference Include="PLib, Version=4.5.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\PLib.4.5.0\lib\net471\PLib.dll</HintPath>
<Reference Include="PLib, Version=4.15.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\PLib.4.15.0\lib\net471\PLib.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion AutomationPlus/DelayGate2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public float DelayAmount

public string GetSliderTooltipKey(int index) => "AutomationPlus.DELAYGATE.DELAYGATE_SIDESCREEN.TOOLTIP";

string ISliderControl.GetSliderTooltip() => string.Format((string)Strings.Get(GetSliderTooltipKey(0)), (object)this.DelayAmount);
string ISliderControl.GetSliderTooltip(int index) => string.Format((string)Strings.Get(GetSliderTooltipKey(0)), (object)this.DelayAmount);

protected override void OnPrefabInit()
{
Expand Down
2 changes: 1 addition & 1 deletion AutomationPlus/mod_info.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
supportedContent: VANILLA_ID, EXPANSION1_ID
minimumSupportedBuild: 469369
version: 1.0.1
version: 1.0.2
APIVersion: 2
4 changes: 2 additions & 2 deletions AutomationPlus/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="OniStubs" version="1.0.2" targetFramework="net471" />
<package id="PLib" version="4.5.0" targetFramework="net471" />
<package id="OniStubs" version="2.0.0" targetFramework="net471" />
<package id="PLib" version="4.15.0" targetFramework="net471" />
</packages>

0 comments on commit c7d6385

Please sign in to comment.