diff options
Diffstat (limited to 'src/game/intro')
-rw-r--r-- | src/game/intro/intro.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/intro/intro.cc b/src/game/intro/intro.cc index 8d44391..25e4d59 100644 --- a/src/game/intro/intro.cc +++ b/src/game/intro/intro.cc @@ -97,7 +97,7 @@ bool Intro::load_world() zone->set_sky(strval); } else if (inifile.got_key()) { - inifile.unkown_key(); + inifile.unknown_key(); } } else if (inifile.in_section("entity")) { @@ -105,7 +105,7 @@ bool Intro::load_world() if (core::Parser::got_entity_key(inifile, entity)) { continue; } else { - inifile.unkown_key(); + inifile.unknown_key(); } } else if (inifile.in_section("globe")) { @@ -114,7 +114,7 @@ bool Intro::load_world() continue; } else if (inifile.got_key()) { - inifile.unkown_key(); + inifile.unknown_key(); } } else if (inifile.in_section("convoy")) { @@ -141,7 +141,7 @@ bool Intro::load_world() convoy->add(strval); } else if (inifile.got_key()) { - inifile.unkown_key(); + inifile.unknown_key(); } } } |