diff --git a/app/Jobs/Commands/Assets/ProcessAllianceAssets.php b/app/Jobs/Commands/Assets/ProcessAllianceAssets.php index a36688fa9..6b07c0237 100644 --- a/app/Jobs/Commands/Assets/ProcessAllianceAssets.php +++ b/app/Jobs/Commands/Assets/ProcessAllianceAssets.php @@ -80,7 +80,7 @@ class ProcessAllianceAssets implements ShouldQueue Asset::where([ 'item_id' => $this->asset->item_id, ])->update([ - 'is_blueprint_copy' => $this->asset->is_blueprint_copy, + 'is_singleton' => $this->asset->is_singleton, 'location_flag' => $this->asset->location_flag, 'location_id' => $this->asset->location_id, 'location_type' => $this->asset->location_type, @@ -92,7 +92,7 @@ class ProcessAllianceAssets implements ShouldQueue Asset::where([ 'item_id' => $this->asset->item_id, ])->update([ - 'is_singleton' => $this->asset->is_singleton, + 'is_singleton' => $this->asset->is_blueprint_copy, ]); } }