diff options
-rw-r--r-- | src/model/mapfile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/mapfile.cc b/src/model/mapfile.cc index 93d21ad..a516649 100644 --- a/src/model/mapfile.cc +++ b/src/model/mapfile.cc @@ -2033,7 +2033,7 @@ Model * MapFile::load(std::string const &name) } // copy weapon tags - for (Model::Weapons::const_iterator wit = submodel_model->weapons().begin(); wit != submodel_model->weapons().begin(); wit++) { + for (Model::Weapons::const_iterator wit = submodel_model->weapons().begin(); wit != submodel_model->weapons().end(); wit++) { tag_weapon = new Weapon(*(*wit)); tag_weapon->get_location().assign(tag_submodel->location() + tag_submodel->axis() * (tag_weapon->location() - submodel_model->origin()) * tag_submodel->scale()); tag_weapon->set_radius(tag_weapon->radius() * tag_submodel->scale()); |