Update leenkx/blender/lnx/logicnode/logic/LN_select.py
This commit is contained in:
		@ -51,8 +51,8 @@ class SelectNode(LnxLogicTreeNode):
 | 
				
			|||||||
    # a property in order to be saved with each individual node
 | 
					    # a property in order to be saved with each individual node
 | 
				
			||||||
    num_choices: IntProperty(default=1, min=0)
 | 
					    num_choices: IntProperty(default=1, min=0)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def __init__(self):
 | 
					    def __init__(self, *args, **kwargs):
 | 
				
			||||||
        super().__init__()
 | 
					        super(SelectNode, self).__init__(*args, **kwargs)
 | 
				
			||||||
        array_nodes[str(id(self))] = self
 | 
					        array_nodes[str(id(self))] = self
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def lnx_init(self, context):
 | 
					    def lnx_init(self, context):
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user