Forgot to clear the dictionary after each check. We don't want it revert ALL changes do we.

This commit is contained in:
Deathmax 2011-06-05 14:23:32 +08:00
parent 39edac96b0
commit 974dbc2424

View file

@ -517,10 +517,12 @@ namespace TShockAPI
}
}
players[i].tileThreshold = 0;
players[i].tilesDestroyed.Clear();
}
else if (players[i].tileThreshold > 0)
{
players[i].tileThreshold = 0;
players[i].tilesDestroyed.Clear();
}
}
}