Update to new version of Arbutils.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-04-09 18:19:21 +02:00
parent 70fc8d2d5f
commit 88eda6ef94
6 changed files with 32 additions and 27 deletions

View File

@@ -10,7 +10,7 @@ namespace CreatureLib::Library {
public:
constexpr SecondaryEffect() noexcept : _chance(0), _effectName(""_cnc) {}
constexpr SecondaryEffect(float chance, const Arbutils::CaseInsensitiveConstString& effectName) noexcept
SecondaryEffect(float chance, const Arbutils::CaseInsensitiveConstString& effectName) noexcept
: _chance(chance), _effectName(effectName) {}
constexpr float GetChance() const noexcept { return _chance; }