You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I just ran the fortune | pokesay command a few times and then this showed up without any pokemon. Notice the "choice: unown-c".
This was on macOS with version 0.5.3.
➜ fortune | pokesay
/----------------------------------------------------------------------------------\
| [A computer is] like an Old Testament god, with a lot of rules and no mercy. |
| -- Joseph Campbell |
\----------------------------------------------------------------------------------/
\
\
\
\
choice: unown-c / categories: [PokemonGen7xRegularUnownCCow]
The text was updated successfully, but these errors were encountered:
I've merged a PR that fixes this, thanks for submitting the issue!
When converting the pokesprite pngs -> cowfiles, the img2xterm tool fails to convert some of them and results in empty data. I now skip over these, and I've double-checked that the offenders have been removed
before
☯ ~/d/p/build for f in $(find -iname unown-l*) ; do ls -alh $f && cat $f ; done
-rw-r--r-- 1 freman freman 0 Mar 16 22:22 ./cows/pokemon-gen7x/regular/unown-l.cow
-rw-r--r-- 1 freman freman 0 Mar 16 22:22 ./cows/pokemon-gen7x/regular/right/unown-l.cow
-rw-r--r-- 1 freman freman 1.3K Mar 16 22:22 ./cows/pokemon-gen7x/shiny/unown-l.cow
-rw-r--r-- 1 freman freman 1.2K Mar 16 22:22 ./cows/pokemon-gen7x/shiny/right/unown-l.cow
-rw-r--r-- 1 freman freman 0 Mar 16 22:22 ./cows/pokemon-gen8/regular/unown-l.cow
-rw-r--r-- 1 freman freman 1.3K Mar 16 22:22 ./cows/pokemon-gen8/shiny/unown-l.cow
after
☯ ~/d/p/build for f in $(find -iname unown-l*) ; do ls -alh $f && cat $f ; done
-rw-r--r-- 1 freman freman 1.3K Mar 16 22:30 ./cows/pokemon-gen7x/shiny/unown-l.cow
-rw-r--r-- 1 freman freman 1.2K Mar 16 22:30 ./cows/pokemon-gen7x/shiny/right/unown-l.cow
-rw-r--r-- 1 freman freman 1.3K Mar 16 22:30 ./cows/pokemon-gen8/shiny/unown-l.cow
So I just ran the
fortune | pokesay
command a few times and then this showed up without any pokemon. Notice the "choice: unown-c".This was on macOS with version 0.5.3.
The text was updated successfully, but these errors were encountered: