diff --git a/src/gui/coin/Redeem.cpp b/src/gui/coin/Redeem.cpp index fa104a16a..e4f7e9af9 100644 --- a/src/gui/coin/Redeem.cpp +++ b/src/gui/coin/Redeem.cpp @@ -48,7 +48,7 @@ public: for (Tool * tool : toolList) { int toolId = tool->GetToolID(); - if (toolId > 0 && toolId < PT_NUM) + if (toolId >= 0 && toolId < PT_NUM) sim->elements[toolId].Unlocked = true; } } diff --git a/src/simulation/elements/NONE.cpp b/src/simulation/elements/NONE.cpp index c48bdae93..367a5601a 100644 --- a/src/simulation/elements/NONE.cpp +++ b/src/simulation/elements/NONE.cpp @@ -8,6 +8,7 @@ Element_NONE::Element_NONE() MenuVisible = 1; MenuSection = SC_SPECIAL; Enabled = 1; + UnlockPrice = 5000; Advection = 0.0f; AirDrag = 0.00f * CFDS;