Skip to content

Commit 55a7499

Browse files
Merge branch 'dev'
2 parents 0f400a5 + d45939d commit 55a7499

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Code/ContextSystem/Contexts/Control/ElifStatementContext.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using SER.Code.Helpers.Extensions;
88
using SER.Code.Helpers.ResultSystem;
99
using SER.Code.TokenSystem.Tokens;
10+
using UnityEngine;
1011

1112
namespace SER.Code.ContextSystem.Contexts.Control;
1213

@@ -46,7 +47,8 @@ public override Result VerifyCurrentState()
4647

4748
return Result.Assert(
4849
_condition.Count > 0,
49-
"An elif statement expects to have a condition, but none was provided!");
50+
"An elif statement expects to have a condition, but none was provided!"
51+
);
5052
}
5153

5254
protected override IEnumerator<float> Execute()

Code/Plugin/MainPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ public enum Contribution : ushort
7474
),
7575
new(
7676
"Luke",
77-
Contribution.Sponsor | Contribution.Betatester
77+
Contribution.Sponsor | Contribution.Betatester,
78+
"76561197961020347@steam"
7879
),
7980
new(
8081
"Raging Tornado",

0 commit comments

Comments
 (0)