Skip to content

Commit

Permalink
Removed extraneous comments from worldtest
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Glover committed Mar 30, 2010
1 parent de474ac commit beed8c8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/worldtest.cc
Expand Up @@ -120,12 +120,10 @@ class world_test : public adonthell::app
{
LOG(INFO) << "worldtest starting up!";

// Initialize the gfx and input systems
LOG(INFO) << "Initialising game modules... ";
init_modules (GFX | INPUT | PYTHON | WORLD);
LOG(INFO) << " done!";

// Set video mode
LOG(INFO) << "Setting video mode... ";
gfx::screen::set_video_mode(640, 480);
LOG(INFO) << " done!";
Expand All @@ -150,13 +148,11 @@ class world_test : public adonthell::app
game_mgr.load (base::savegame::INITIAL_SAVE);
LOG(INFO) << " done!";

// create a specie
LOG(INFO) << "Creating 'Human' specie... ";
rpg::specie human("Human");
human.get_state("groups/human.specie");
LOG(INFO) << " done!";

// create a faction
LOG(INFO) << "Creating 'Noble' faction... ";
rpg::faction noble("Noble");
noble.get_state("groups/noble.faction");
Expand All @@ -168,7 +164,6 @@ class world_test : public adonthell::app
player->set_specie ("Human");
LOG(INFO) << " done!";

// Add faction to character
LOG(INFO) << "Adding 'Noble' faction to player character... ";
player->add_faction("Noble");
LOG(INFO) << " done!";
Expand Down

0 comments on commit beed8c8

Please sign in to comment.