Skip to content

Commit

Permalink
Modified healing plugin implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Plenyx committed Feb 22, 2024
1 parent 62dab77 commit 4149207
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DpsReport/ExtraJSON/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ internal sealed class Player
[JsonProperty("defenses")]
internal Defenses[] Defenses { get; set; }

[JsonProperty("statsHealing")]
[JsonProperty("extHealingStats")]
internal StatsHealing StatsHealing { get; set; }

[JsonProperty("statsBarrier")]
[JsonProperty("extBarrierStats")]
internal StatsBarrier StatsBarrier { get; set; }
}
}
2 changes: 1 addition & 1 deletion DpsReport/ExtraJSON/StatsBarrier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ namespace PlenBotLogUploader.DpsReport.ExtraJson
internal class StatsBarrier
{
[JsonProperty("outgoingBarrier")]
internal StatsBarrierOutgoingBarrier OutgoingBarrier { get; set; }
internal OutgoingBarrier OutgoingBarrier { get; set; }
}
}
2 changes: 1 addition & 1 deletion DpsReport/ExtraJSON/StatsHealing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ namespace PlenBotLogUploader.DpsReport.ExtraJson
internal class StatsHealing
{
[JsonProperty("outgoingHealing")]
internal StatsHealingOutgoingHealing[] OutgoingHealing;
internal OutgoingHealing[] OutgoingHealing;

Check warning on line 8 in DpsReport/ExtraJSON/StatsHealing.cs

View workflow job for this annotation

GitHub Actions / build

Field 'StatsHealing.OutgoingHealing' is never assigned to, and will always have its default value null

Check warning on line 8 in DpsReport/ExtraJSON/StatsHealing.cs

View workflow job for this annotation

GitHub Actions / build

Field 'StatsHealing.OutgoingHealing' is never assigned to, and will always have its default value null

Check warning on line 8 in DpsReport/ExtraJSON/StatsHealing.cs

View workflow job for this annotation

GitHub Actions / build

Field 'StatsHealing.OutgoingHealing' is never assigned to, and will always have its default value null
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace PlenBotLogUploader.DpsReport.ExtraJson
{
internal class StatsBarrierOutgoingBarrier
internal class OutgoingBarrier
{
[JsonProperty("barrier")]
internal long Barrier { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace PlenBotLogUploader.DpsReport.ExtraJson
{
internal class StatsHealingOutgoingHealing
internal class OutgoingHealing
{
[JsonProperty("healing")]
internal long Healing { get; set; }
Expand Down

0 comments on commit 4149207

Please sign in to comment.