Skip to content

Commit

Permalink
Merge pull request #2984 from t3du/fixsound
Browse files Browse the repository at this point in the history
play sound node: fix update routine version
  • Loading branch information
luboslenco committed Dec 20, 2023
2 parents cd2750c + 62ebcdd commit 8e8af90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blender/arm/logicnode/sound/LN_play_sound.py
Expand Up @@ -112,7 +112,7 @@ def draw_buttons(self, context, layout):
row.prop(self, 'property4')

def get_replacement_node(self, node_tree: bpy.types.NodeTree):
if self.arm_version not in (0, 1):
if self.arm_version not in (0, 2):
raise LookupError()

return NodeReplacement.Identity(self)

0 comments on commit 8e8af90

Please sign in to comment.