diff --git a/build/arch/PKGBUILD b/build/arch/PKGBUILD index 2f9eb7e..3f409a3 100644 --- a/build/arch/PKGBUILD +++ b/build/arch/PKGBUILD @@ -1,7 +1,7 @@ pkgname=pokerust-git pkgdesc="Pokemon Colorscripts written in Rust" _gitname=pokerust -pkgver=r21.28c9d43 +pkgver=r22.ceb9133 pkgrel=1 arch=('x86_64') url="https://github.com/Vomitblood/$_gitname" diff --git a/src/bin/minimon.rs b/src/bin/minimon.rs index 995d9a2..c13eb51 100644 --- a/src/bin/minimon.rs +++ b/src/bin/minimon.rs @@ -11,7 +11,7 @@ fn main() { let mut rng = rand::thread_rng(); if let Some(random_file) = files.choose(&mut rng) { - println!("Random Pokémon Sprite: {}", random_file); + println!("{}", random_file); if let Some(file_data) = ColorScriptsDir::get(random_file) { println!("{}", std::str::from_utf8(file_data.data.as_ref()).unwrap()); }