We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6758235 commit fe4da5aCopy full SHA for fe4da5a
1 file changed
ScriptedEvents/Variables/MapVariables.cs
@@ -32,9 +32,22 @@ public class MapVariables : IVariableGroup
32
new RandomDoor(),
33
new InRoom(),
34
new CassieSpeaking(),
35
+ new MapSeed(),
36
};
37
}
38
39
+ public class MapSeed : IStringVariable
40
+ {
41
+ /// <inheritdoc/>
42
+ public string Name => "{MAPSEED}";
43
+
44
45
+ public string Description => "Returns the current map seed.";
46
47
48
+ public string Value => Map.Seed.ToString();
49
+ }
50
51
public class CassieSpeaking : IBoolVariable
52
{
53
/// <inheritdoc/>
0 commit comments