diff --git a/source/funkin/ui/story/Level.hx b/source/funkin/ui/story/Level.hx index ea6940c4a..c93ad41a6 100644 --- a/source/funkin/ui/story/Level.hx +++ b/source/funkin/ui/story/Level.hx @@ -187,6 +187,10 @@ class Level implements IRegistryEntry if (_data.props.length == 0) return props; + var hiddenProps:Array = props.splice(_data.props.length - 1, props.length - 1); + for (hiddenProp in hiddenProps) + hiddenProp.visible = false; + for (propIndex in 0..._data.props.length) { var propData = _data.props[propIndex]; @@ -198,6 +202,7 @@ class Level implements IRegistryEntry { existingProp.propData = propData; existingProp.x = propData.offsets[0] + FlxG.width * 0.25 * propIndex; + existingProp.visible = true; } else {