mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Content store: Ignore '_game' in game names in ID generation (#8270)
Fixes 'install' button continuing to be displayed after installing a game whose name ends with '_game'.
This commit is contained in:
parent
0ad96cc73f
commit
85389ad994
1 changed files with 6 additions and 1 deletions
|
@ -297,7 +297,12 @@ function store.load()
|
|||
package.author .. "/" .. package.name ..
|
||||
"/releases/" .. package.release .. "/download/"
|
||||
|
||||
package.id = package.author .. "/" .. package.name
|
||||
local name_len = #package.name
|
||||
if package.type == "game" and name_len > 5 and package.name:sub(name_len - 4) == "_game" then
|
||||
package.id = package.author .. "/" .. package.name:sub(1, name_len - 5)
|
||||
else
|
||||
package.id = package.author .. "/" .. package.name
|
||||
end
|
||||
end
|
||||
|
||||
store.packages = store.packages_full
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue