do not error if run outside of steam

This commit is contained in:
2025-04-04 10:20:18 +02:00
parent b0925393a7
commit 4dbb6a54c7

View File

@@ -94,7 +94,7 @@ fn main() {
app.add_plugins(plugin); app.add_plugins(plugin);
} }
Err(e) => { Err(e) => {
error!("steam init error: {e:?}"); warn!("steam init error: {e:?}");
} }
}; };