minified version

This commit is contained in:
Vomitblood 2024-03-25 15:08:43 +08:00
parent ceb9133740
commit ab34e78bfb
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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());
}