File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace SER.MethodSystem.Methods.GeneralVariableMethods;
88
99public class PopVariableMethod : ReturningMethod
1010{
11- public override string ? Description => "Erases a given variable, returning its value." ;
11+ public override string Description => "Erases a given variable, returning its value." ;
1212
1313 public override Type [ ] ? ReturnTypes => null ;
1414
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace SER.MethodSystem.Methods.GeneralVariableMethods;
88
99public class VarExistsMethod : ReturningMethod < BoolValue >
1010{
11- public override string ? Description => "Returns a bool value indicating if the provided variable exists." ;
11+ public override string Description => "Returns a bool value indicating if the provided variable exists." ;
1212
1313 public override Argument [ ] ExpectedArguments { get ; } =
1414 [
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ namespace SER.MethodSystem.Methods.MapMethods;
77
88public class CleanupPickupsMethod : SynchronousMethod
99{
10- public override string ? Description => "Cleans pickups (items) from the map." ;
10+ public override string Description => "Cleans pickups (items) from the map." ;
1111
1212 public override Argument [ ] ExpectedArguments { get ; } = [ ] ;
1313
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace SER.MethodSystem.Methods.RoundMethods;
66
77public class EndRoundMethod : SynchronousMethod
88{
9- public override string ? Description => "Ends a round." ;
9+ public override string Description => "Ends a round." ;
1010
1111 public override Argument [ ] ExpectedArguments { get ; } = [ ] ;
1212
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace SER.MethodSystem.Methods.RoundMethods;
66
77public class StartRoundMethod : SynchronousMethod
88{
9- public override string ? Description => "Start a round." ;
9+ public override string Description => "Start a round." ;
1010
1111 public override Argument [ ] ExpectedArguments { get ; } = [ ] ;
1212
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace SER.MethodSystem.Methods.ScriptMethods;
99
1010public class TriggerMethod : SynchronousMethod
1111{
12- public override string ? Description => "Fires a given trigger, executing scripts which are attached to it." ;
12+ public override string Description => "Fires a given trigger, executing scripts which are attached to it." ;
1313
1414 public override Argument [ ] ExpectedArguments { get ; } =
1515 [
You can’t perform that action at this time.
0 commit comments