Skip to content

Commit

Permalink
Fix for commit d71a0d9: also adjust melting point of BRMT(TUNG) based…
Browse files Browse the repository at this point in the history
… on TUNG HighTemperature value
  • Loading branch information
jacksonmj committed Mar 5, 2015
1 parent 8f57c9a commit 84f6ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simulation/Simulation.cpp
Expand Up @@ -3563,7 +3563,7 @@ void Simulation::UpdateParticles(int start, int end)
{
if (parts[i].ctype == PT_TUNG)
{
if (ctemph < 3695.0)
if (ctemph < elements[parts[i].ctype].HighTemperature)
s = 0;
else
{
Expand Down

0 comments on commit 84f6ede

Please sign in to comment.