fix: invert maxLife and expReward
This commit is contained in:
@@ -48,8 +48,8 @@ private:
|
||||
std::uint16_t m_ExpReward;
|
||||
public:
|
||||
MobStats(float damage, float speed, std::uint16_t moneyCost,
|
||||
std::uint16_t expCost, std::uint16_t maxLife,
|
||||
std::uint16_t expReward) : m_Damage(damage), m_Speed(speed),
|
||||
std::uint16_t expCost, std::uint16_t expReward,
|
||||
std::uint16_t maxLife) : m_Damage(damage), m_Speed(speed),
|
||||
m_MoneyCost(moneyCost), m_ExpCost(expCost), m_MaxLife(maxLife),
|
||||
m_ExpReward(expReward) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user