Skip to content

Commit

Permalink
fix broken observer api
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Dec 1, 2024
1 parent 4ce947a commit 23cd8c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bevy_ios_iap/src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use bevy_ecs::{
};

use crate::{
plugin::IosIapResponse, IosIapEvents, IosIapProductsResponse, IosIapPurchaseResponse,
plugin::IosIapResponse, IosIapProductsResponse, IosIapPurchaseResponse,
IosIapTransactionFinishResponse, IosIapTransactionResponse,
};

Expand Down Expand Up @@ -139,7 +139,7 @@ pub fn plugin(app: &mut App) {
PreUpdate,
(
cleanup_finished_requests,
process_events.run_if(on_event::<IosIapEvents>()),
process_events.run_if(on_event::<IosIapResponse>),
)
.chain()
.in_set(BevyIosIapSet),
Expand Down

0 comments on commit 23cd8c2

Please sign in to comment.