mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix default tornado type
This commit is contained in:
parent
97f104852a
commit
c5176d7036
6
NewHorizons/External/Modules/PropModule.cs
vendored
6
NewHorizons/External/Modules/PropModule.cs
vendored
@ -271,9 +271,9 @@ namespace NewHorizons.External.Modules
|
||||
[JsonConverter(typeof(StringEnumConverter))]
|
||||
public enum TornadoType
|
||||
{
|
||||
[EnumMember(Value = @"downwards")] Downwards = 0,
|
||||
[EnumMember(Value = @"upwards")] Upwards = 0,
|
||||
|
||||
[EnumMember(Value = @"upwards")] Upwards = 1,
|
||||
[EnumMember(Value = @"downwards")] Downwards = 1,
|
||||
|
||||
[EnumMember(Value = @"hurricane")] Hurricane = 2
|
||||
}
|
||||
@ -303,7 +303,7 @@ namespace NewHorizons.External.Modules
|
||||
/// <summary>
|
||||
/// What type of cyclone should this be? Upwards and downwards are both tornados and will push in that direction.
|
||||
/// </summary>
|
||||
[DefaultValue("downwards")] public TornadoType type = TornadoType.Downwards;
|
||||
[DefaultValue("upwards")] public TornadoType type = TornadoType.Upwards;
|
||||
|
||||
/// <summary>
|
||||
/// Angular distance from the starting position that it will wander, in terms of the angle around the x-axis.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user