Fixed various property mapping issues

This commit is contained in:
Chomp
2025-08-21 14:41:56 +01:00
parent 470d85e8a3
commit a0ce834b29
2 changed files with 10 additions and 1 deletions
@@ -70,7 +70,10 @@ public record Quest
public string? SuccessMessageText { get; set; }
[JsonPropertyName("acceptPlayerMessage")]
public string? AcceptPlayerMessage { get; set; }
public string AcceptPlayerMessage { get; set; }
[JsonPropertyName("acceptanceAndFinishingSource")]
public string AcceptanceAndFinishingSource { get; set; }
[JsonPropertyName("declinePlayerMessage")]
public string? DeclinePlayerMessage { get; set; }
@@ -106,6 +106,9 @@ public record Props
[JsonPropertyName("Weight")]
public double? Weight { get; set; }
[JsonPropertyName("DialogId")]
public MongoId? DialogId { get; set; }
[JsonPropertyName("WeightMultipliers")]
public object? WeightMultipliers { get; set; }
@@ -1479,6 +1482,9 @@ public record Props
[JsonPropertyName("MinTimeToContactExplode")]
public double? MinTimeToContactExplode { get; set; }
[JsonPropertyName("PlayFuzeSound")]
public bool MinTimeToCPlayFuzeSoundontactExplode { get; set; }
[JsonPropertyName("ExplosionEffectType")]
public string? ExplosionEffectType { get; set; }