Skip to content

Commit

Permalink
Fix itch uploads, see bevyengine/bevy#10623
Browse files Browse the repository at this point in the history
  • Loading branch information
will-hart committed Apr 14, 2024
1 parent 39774e8 commit 9471b52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use bevy::{log::info, prelude::*};
use bevy::{asset::AssetMetaCheck, log::info, prelude::*};

use crate::{
animation::animate_sprite, audio::InternalAudioPlugin, core::CorePlugin,
Expand Down Expand Up @@ -29,6 +29,7 @@ pub enum AppState {
fn main() {
let mut app = App::new();
app.init_state::<AppState>()
.insert_resource(AssetMetaCheck::Never)
.add_plugins((DefaultPlugins.set(WindowPlugin {
primary_window: Some(Window {
title: format!("Necromatcher v{}", built_info::PKG_VERSION),
Expand Down

0 comments on commit 9471b52

Please sign in to comment.