Skip to content

Commit 924048e

Browse files
update labapi
1 parent 0374ca6 commit 924048e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Code/MethodSystem/Methods/CASSIEMethods/CassieMethod.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JetBrains.Annotations;
2+
using LabApi.Features.Wrappers;
23
using SER.Code.ArgumentSystem.Arguments;
34
using SER.Code.ArgumentSystem.BaseArguments;
45
using SER.Code.MethodSystem.BaseMethods;
@@ -68,7 +69,7 @@ public override void Execute()
6869
}
6970

7071
// todo: check how to make the cassie silent again
71-
LabApi.Features.Wrappers.Cassie.Message(
72+
Announcer.Message(
7273
message,
7374
subtitles,
7475
glitchScale: isNoisy ? 1f : 0f

Code/MethodSystem/Methods/CASSIEMethods/ClearCassieMethod.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JetBrains.Annotations;
2+
using LabApi.Features.Wrappers;
23
using SER.Code.ArgumentSystem.BaseArguments;
34
using SER.Code.MethodSystem.BaseMethods;
45

@@ -13,6 +14,6 @@ public class ClearCassieMethod : SynchronousMethod
1314

1415
public override void Execute()
1516
{
16-
LabApi.Features.Wrappers.Cassie.Clear();
17+
Announcer.Clear();
1718
}
1819
}

Code/MethodSystem/Methods/CASSIEMethods/IsCassieSpeakingMethod.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using JetBrains.Annotations;
2+
using LabApi.Features.Wrappers;
23
using SER.Code.ArgumentSystem.BaseArguments;
34
using SER.Code.MethodSystem.BaseMethods;
45
using SER.Code.ValueSystem;
@@ -14,6 +15,6 @@ public class IsCassieSpeakingMethod : ReturningMethod<BoolValue>
1415

1516
public override void Execute()
1617
{
17-
ReturnValue = LabApi.Features.Wrappers.Cassie.IsSpeaking;
18+
ReturnValue = Announcer.IsSpeaking;
1819
}
1920
}

SER.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<PackageReference Include="ExMod.Exiled" Version="9.12.4" />
8989
<PackageReference Include="NCalc" Version="1.3.8" />
9090
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
91-
<PackageReference Include="Northwood.LabAPI" Version="1.1.4" />
91+
<PackageReference Include="Northwood.LabAPI" Version="1.1.5" />
9292
</ItemGroup>
9393
<ItemGroup>
9494
<Folder Include="Code\" />

0 commit comments

Comments
 (0)