Write paths.ini, fix a few issues

This commit is contained in:
2026-09-14 18:42:13 -05:00
parent 73a9a80a34
commit 1d3164da72
3 changed files with 43 additions and 14 deletions

View File

@@ -68,7 +68,7 @@ module W3DHubLauncher
def extended_data(key, default)
v = @extended_data&.find { |d| d.name == key }&.value
if v.nil?
v = @_app.extended_data(key, value)
v = @_app.extended_data(key, default)
return default if v.nil?
end