mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-07-01 13:29:06 +02:00
resource: remove "minecraft:" prefix from hash keys
Shorter keys mean less data to hash.
This commit is contained in:
parent
483cdf48c8
commit
95e4e45974
3 changed files with 941 additions and 940 deletions
|
@ -35,7 +35,7 @@ with open(sys.argv[1]) as f:
|
|||
output = {}
|
||||
|
||||
for name, info in blocks.items():
|
||||
id = 'minecraft:' + name
|
||||
id = name
|
||||
|
||||
output[id] = {
|
||||
'color': {'r': 0, 'g': 0, 'b': 0},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue