game: allow anyone to move an imported model on a flag

This commit is contained in:
Crypto City 2021-11-27 20:51:25 +00:00
parent 469d775e1d
commit ceba361959

View File

@ -3507,7 +3507,7 @@ void CryptoCityUrho3D::HandlePlaceModel(StringHash eventType, VariantMap& eventD
{
UnsetFocus();
const std::shared_ptr<Flag> flag = gameState.map.get_flag(placing_model_flag->id);
if (!flag || flag != placing_model_flag || placing_model_flag->owner != gameState.playerState.id)
if (!flag || flag != placing_model_flag)
{
new MessageBox(context_, "Flag not found, model placement cancelled");
EndModelPlacement();