Fixed various property mapping issues
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user