Skip to content

Commit 524940f

Browse files
committed
Update
1 parent e445f62 commit 524940f

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Pets/Pet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private IEnumerator<float> Walk()
7272

7373
var distance = Vector3.Distance(Owner.Position, Position);
7474

75-
if ((PlayerMovementState)Owner.AnimationController.Network_curMoveState == PlayerMovementState.Sneaking) Movement = PlayerMovementState.Sneaking;
75+
if (Owner.MovementState == PlayerMovementState.Sneaking) Movement = PlayerMovementState.Sneaking;
7676
else Movement = PlayerMovementState.Sprinting;
7777

7878
if (Movement == PlayerMovementState.Sneaking)

Pets/Pets.csproj

+8-8
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@
3636
<HintPath>..\packages\Lib.Harmony.2.1.1\lib\net472\0Harmony.dll</HintPath>
3737
</Reference>
3838
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
39-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\Assembly-CSharp.dll</HintPath>
39+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\Assembly-CSharp.dll</HintPath>
4040
</Reference>
4141
<Reference Include="Assembly-CSharp-firstpass, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
42-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\Assembly-CSharp-firstpass.dll</HintPath>
42+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\Assembly-CSharp-firstpass.dll</HintPath>
4343
</Reference>
4444
<Reference Include="LiteDB, Version=5.0.11.0, Culture=neutral, PublicKeyToken=4ee40123013c9f27, processorArchitecture=MSIL">
4545
<HintPath>..\packages\LiteDB.5.0.11\lib\net45\LiteDB.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Mirror, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
48-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\Mirror.dll</HintPath>
48+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\Mirror.dll</HintPath>
4949
</Reference>
50-
<Reference Include="Synapse, Version=2.7.0.0, Culture=neutral, processorArchitecture=MSIL">
51-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\Synapse.dll</HintPath>
50+
<Reference Include="Synapse, Version=2.7.1.0, Culture=neutral, processorArchitecture=MSIL">
51+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\Synapse.dll</HintPath>
5252
</Reference>
5353
<Reference Include="System" />
5454
<Reference Include="System.Core" />
@@ -63,13 +63,13 @@
6363
<Reference Include="System.Net.Http" />
6464
<Reference Include="System.Xml" />
6565
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
66-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\UnityEngine.dll</HintPath>
66+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\UnityEngine.dll</HintPath>
6767
</Reference>
6868
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
69-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\UnityEngine.CoreModule.dll</HintPath>
69+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\UnityEngine.CoreModule.dll</HintPath>
7070
</Reference>
7171
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
72-
<HintPath>..\packages\SynapseSL.2.7.0-dev4\lib\net472\UnityEngine.PhysicsModule.dll</HintPath>
72+
<HintPath>..\packages\SynapseSL.2.7.1\lib\net472\UnityEngine.PhysicsModule.dll</HintPath>
7373
</Reference>
7474
<Reference Include="YamlDotNet, Version=11.0.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
7575
<HintPath>..\packages\YamlDotNet.11.2.1\lib\net45\YamlDotNet.dll</HintPath>

Pets/PluginClass.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ namespace Pets
1212
Description = "A Plugin for Pets in SL",
1313
LoadPriority = 0,
1414
SynapseMajor = 2,
15-
SynapseMinor = 6,
16-
SynapsePatch = 0,
17-
Version = "v.1.0.1"
15+
SynapseMinor = 7,
16+
SynapsePatch = 2,
17+
Version = "v.1.0.2"
1818
)]
1919
public class PluginClass : AbstractPlugin
2020
{

Pets/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Lib.Harmony" version="2.1.1" targetFramework="net472" />
44
<package id="LiteDB" version="5.0.11" targetFramework="net472" />
5-
<package id="SynapseSL" version="2.7.0-dev4" targetFramework="net472" />
5+
<package id="SynapseSL" version="2.7.1" targetFramework="net472" />
66
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0-preview.3.21201.4" targetFramework="net472" />
77
<package id="YamlDotNet" version="11.2.1" targetFramework="net472" />
88
</packages>

0 commit comments

Comments
 (0)