azalea/codegen/genentities.py
mat 12a9c8ce65
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
2023-03-14 16:33:03 -05:00

18 lines
447 B
Python

import lib.code.version
import lib.code.entity
import lib.code.utils
import lib.download
import lib.extract
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_entities_data = burger_data[0]['entities']
lib.code.entity.generate_entity_metadata(burger_entities_data, mappings)
lib.code.utils.fmt()
print('Done!')