@@ -45,14 +45,14 @@ def main(args):
45
45
46
46
if __name__ == '__main__' :
47
47
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' ))
49
49
parser .add_argument ('--world-dir' , help = "World Directory" )
50
50
parser .add_argument ('--as-zip' , action = 'store_true' , help = "Write datapack as zip file" )
51
51
parser .add_argument ('--namespace' , help = "Function namespace" , default = 'ir_generated' )
52
52
parser .add_argument ('--rem-existing' , help = "Remove existing functions in namespace" ,
53
53
action = 'store_true' )
54
54
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" )
56
56
parser .add_argument ('--gen-cleanup' , action = 'store_true' , help = "Generate cleanup function" )
57
57
parser .add_argument ('--place-location' , help = "Location to place command blocks" , required = True )
58
58
parser .add_argument ('--spawn-location' , default = '~ ~2 ~' ,
0 commit comments