Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Fixed a serialization issue that broke crown sizes for all non-standa…
Browse files Browse the repository at this point in the history
…rd monsters.

resolves #27
  • Loading branch information
sir-wilhelm committed Apr 8, 2020
1 parent d6a1a6f commit 621a095
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SmartHunter/Game/Config/MonsterCrownConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ namespace SmartHunter.Game.Config
{
public class MonsterCrownConfig
{
public readonly float Mini;
public readonly float Silver;
public readonly float Gold;
public float Mini;
public float Silver;
public float Gold;

public MonsterCrownConfig(CrownPreset crownPreset)
{
Expand Down

0 comments on commit 621a095

Please sign in to comment.