@@ -45,14 +45,14 @@ def main(args):
4545
4646if __name__ == '__main__' :
4747 parser = argparse .ArgumentParser ()
48- parser .add_argument ('file' , help = "ASM File" , type = argparse .FileType ('r' ))
48+ parser .add_argument ('file' , help = "Command IR File" , type = argparse .FileType ('r' ))
4949 parser .add_argument ('--world-dir' , help = "World Directory" )
5050 parser .add_argument ('--as-zip' , action = 'store_true' , help = "Write datapack as zip file" )
5151 parser .add_argument ('--namespace' , help = "Function namespace" , default = 'ir_generated' )
5252 parser .add_argument ('--rem-existing' , help = "Remove existing functions in namespace" ,
5353 action = 'store_true' )
5454 parser .add_argument ('--debug' , action = 'store_true' , help = "Enable debug output" )
55- parser .add_argument ('--dump-ir' , action = 'store_true' , help = "Dump CMD IR output" )
55+ parser .add_argument ('--dump-ir' , action = 'store_true' , help = "Dump Command IR output" )
5656 parser .add_argument ('--gen-cleanup' , action = 'store_true' , help = "Generate cleanup function" )
5757 parser .add_argument ('--place-location' , help = "Location to place command blocks" , required = True )
5858 parser .add_argument ('--spawn-location' , default = '~ ~2 ~' ,
0 commit comments