Skip to content

Commit dda64f4

Browse files
author
bspkrs
committed
probably fix some key errors before they happen
1 parent fb89f9c commit dda64f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MCPBot.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,9 @@ def push_json_to_maven(self, bot, sender, dest, cmd, args):
372372
return
373373

374374
for result in results:
375-
if not result['MC_VERSION_CODE'] in json_data.keys():
376-
json_data[result['MC_VERSION_CODE']] = {'snapshot': [], 'stable': []}
377-
json_data[result['MC_VERSION_CODE']][result['VERSION_TYPE']].append(int(result['VERSION_CODE']))
375+
if not result['mc_version_code'] in json_data.keys():
376+
json_data[result['mc_version_code']] = {'snapshot': [], 'stable': []}
377+
json_data[result['mc_version_code']][result['version_type']].append(int(result['version_code']))
378378

379379
# Create local file to upload to Maven
380380
file_to_create = os.path.join(self.base_export_path, 'versions.json')
@@ -425,7 +425,7 @@ def push_xml_to_maven(self, bot, sender, dest, cmd, args):
425425
count = 0
426426

427427
for result in results:
428-
version_string = result['VERSION_CODE'] + '-' + result['MC_VERSION_CODE']
428+
version_string = result['version_code'] + '-' + result['mc_version_code']
429429
if count == 0:
430430
ET.SubElement(versioning, 'release').text = version_string
431431
ET.SubElement(versions, 'version').text = version_string

0 commit comments

Comments
 (0)