Update readme

main
kalle 2025-03-08 11:13:01 +01:00
parent 6ffad8ff20
commit 9c577b0b01
2 changed files with 35 additions and 1 deletions

34
README.md Normal file
View File

@ -0,0 +1,34 @@
# Potato Minecraft Server
It runs on a potato.
## Todo list
### Datapacks
| Registry | Loads | Loads tags | Synced to client | Tags synced to client |
|---------------------|-------|------------|------------------|-----------------------|
|advancement | ❌ | ❌ | ❌ | ❌ |
|banner_pattern | ❌ | ❌ | ❌ | ❌ |
|cat_variant | ❌ | ❌ | ❌ | ❌ |
|chat_type | ❌ | ❌ | ❌ | ❌ |
|cow_variant | ❌ | ❌ | ❌ | ❌ |
|damage_type | ❌ | ❌ | ❌ | ❌ |
|dimension | ❌ | ❌ | ❌ | ❌ |
|dimension_type | ❌ | ❌ | ❌ | ❌ |
|enchantment | ❌ | ❌ | ❌ | ❌ |
|enchantment_provider | ❌ | ❌ | ❌ | ❌ |
|frog_variant | ❌ | ❌ | ❌ | ❌ |
|instrument | ❌ | ❌ | ❌ | ❌ |
|item_modifier | ❌ | ❌ | ❌ | ❌ |
|jukebox_song | ❌ | ❌ | ❌ | ❌ |
|loot_table | ❌ | ❌ | ❌ | ❌ |
|painting_variant | ❌ | ❌ | ❌ | ❌ |
|pig_variant | ❌ | ❌ | ❌ | ❌ |
|predicate | ❌ | ❌ | ❌ | ❌ |
|recipe | ❌ | ❌ | ❌ | ❌ |
|test_environment | ❌ | ❌ | ❌ | ❌ |
|test_instance | ❌ | ❌ | ❌ | ❌ |
|trial_spawner | ❌ | ❌ | ❌ | ❌ |
|trim_material | ❌ | ❌ | ❌ | ❌ |
|trim_pattern | ❌ | ❌ | ❌ | ❌ |
|wolf_variant | ❌ | ❌ | ❌ | ❌ |

View File

@ -57,7 +57,7 @@ impl Datapack {
let path = namespace.join(path);
if let Ok(files) = std::fs::read_dir(path) {
for file in files {
let file = file.unwrap().path();
let file = file?.path();
let name = file
.file_stem()
.and_then(OsStr::to_str)