diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2023-03-14 16:33:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-14 16:33:03 -0500 |
| commit | 12a9c8ce65b58f0c600fd7b9fc5d454ce228b420 (patch) | |
| tree | 9bada4164ea12fa533d413c0c7090f4779b519f1 /codegen/genentities.py | |
| parent | b792e21d1c2b7dba04d88dba479ed451104a6514 (diff) | |
| download | azalea-drasl-12a9c8ce65b58f0c600fd7b9fc5d454ce228b420.tar.xz | |
1.19.4 (#57)
* 23w03a
* 23w04a
* 23w05a
* 23w06a
* fix
* 23w07a
mojang broke their json data generator so some stuff is missing
* didn't mean to commit that file here
* 1.19.4-pre2
* fix
* 1.19.4-pre3
* fix
* how did these packets get here
* 1.19.4-pre4
* 1.19.4-rc1
* 1.19.4-rc2
* 1.19.4-rc3
* merge main
* remove debugging code
* 1.19.4
Diffstat (limited to 'codegen/genentities.py')
| -rw-r--r-- | codegen/genentities.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/codegen/genentities.py b/codegen/genentities.py index 12354fe7..bb1c9b24 100644 --- a/codegen/genentities.py +++ b/codegen/genentities.py @@ -9,9 +9,9 @@ version_id = lib.code.version.get_version_id() mappings = lib.download.get_mappings_for_version(version_id) burger_data = lib.extract.get_burger_data_for_version(version_id) -burger_entity_data = burger_data[0]['entities']['entity'] +burger_entities_data = burger_data[0]['entities'] -lib.code.entity.generate_entity_metadata(burger_entity_data, mappings) +lib.code.entity.generate_entity_metadata(burger_entities_data, mappings) lib.code.utils.fmt() |
