Skip to content

Commit e264a17

Browse files
Update ChanceVariables.cs
1 parent cfd65dc commit e264a17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ScriptedEvents/Variables/ChanceVariables.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ public class Rand : IFloatVariable, IArgumentVariable, ILongDescription
4545
new Argument("endNumber", typeof(string), "An ending number of the random range.", true),
4646
};
4747

48-
public string LongDescription => $@"The return value will be a random number from the provided range, depending on the numbers and the type.
48+
public string LongDescription => @"The return value will be a random number from the provided range, depending on the numbers and the type.
4949
5050
If 'type' is set to 'INT':
51-
> act PRINT My integer is {{RANDOM:INT:1:100}}
51+
> act PRINT My integer is {RANDOM:INT:1:100}
5252
> My integer is 60
5353
5454
If 'type' is set to 'FLOAT':
55-
> act PRINT My float is {{RANDOM:FLOAT:0:1}}
55+
> act PRINT My float is {RANDOM:FLOAT:0:1}
5656
> My float is 0.35227";
5757

5858
/// <inheritdoc/>

0 commit comments

Comments
 (0)