diff --git a/NewHorizons/External/Modules/PropModule.cs b/NewHorizons/External/Modules/PropModule.cs index 52ab42c6..70ebc244 100644 --- a/NewHorizons/External/Modules/PropModule.cs +++ b/NewHorizons/External/Modules/PropModule.cs @@ -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 /// /// What type of cyclone should this be? Upwards and downwards are both tornados and will push in that direction. /// - [DefaultValue("downwards")] public TornadoType type = TornadoType.Downwards; + [DefaultValue("upwards")] public TornadoType type = TornadoType.Upwards; /// /// Angular distance from the starting position that it will wander, in terms of the angle around the x-axis. diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 5cc6a168..2a36d134 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -1634,7 +1634,7 @@ }, "type": { "description": "What type of cyclone should this be? Upwards and downwards are both tornados and will push in that direction.", - "default": "downwards", + "default": "upwards", "$ref": "#/definitions/TornadoType" }, "wanderDegreesX": { @@ -1665,13 +1665,13 @@ "type": "string", "description": "", "x-enumNames": [ - "Downwards", "Upwards", + "Downwards", "Hurricane" ], "enum": [ - "downwards", "upwards", + "downwards", "hurricane" ] },