GRIM: Fix indentation

This commit is contained in:
Joel Teichroeb 2012-04-28 11:13:21 -07:00
parent f5ccde127a
commit b306a1c52a

View File

@ -320,7 +320,7 @@ int Costume::getChoreId(const char *name) {
void Costume::playChore(const char *name) {
for (int i = 0; i < _numChores; ++i) {
if (strcmp(_chores[i]->_name, name) == 0) {
if (strcmp(_chores[i]->_name, name) == 0) {
playChore(i);
return;
}