compat: fix customvar exclude

This commit is contained in:
Michael Friedrich 2013-08-09 14:07:44 +02:00
parent 62d0b6c30c
commit 1a798232ba
1 changed files with 7 additions and 2 deletions

View File

@ -478,8 +478,13 @@ Dictionary::Ptr CompatUtility::GetCustomVariableConfig(DynamicObject::Ptr const&
Value value;
BOOST_FOREACH(boost::tie(key, value), custom) {
if (key != "notes" && key != "action_url" && key != "notes_url" &&
key != "icon_image" && key != "icon_image_alt" && key != "statusmap_image" && "2d_coords")
if (key == "notes" ||
key == "action_url" ||
key == "notes_url" ||
key == "icon_image" ||
key == "icon_image_alt" ||
key == "statusmap_image" ||
key == "2d_coords")
continue;
customvars->Set(key, value);