Skip to content

Commit

Permalink
Using filename instead of author and level name
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi authored and Tobias Markus committed Jan 24, 2014
1 parent ce5ea3c commit e25da71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/badguy/badguy.cpp
Expand Up @@ -147,7 +147,7 @@ BadGuy::update(float elapsed_time)
int path_chars = badguy.rfind("/",badguy.length());
badguy = badguy.substr(path_chars + 1, badguy.length() - path_chars);
// log warning since badguys_killed can no longer reach total_badguys
std::string current_level = "[" + Sector::current()->get_level()->author + " - " + Sector::current()->get_level()->name + "] ";
std::string current_level = "[" + Sector::current()->get_level()->filename + "] ";
log_warning << current_level << "Counted badguy " << badguy << " starting at " << start_position << " has left the sector" <<std::endl;;
}
return;
Expand Down

0 comments on commit e25da71

Please sign in to comment.