Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
804d65a8
Commit
804d65a8
authored
10 years ago
by
Nathanaëlle Courant
Browse files
Options
Downloads
Patches
Plain Diff
Add modname convention checking
Fixes #2037
parent
5a0ed780
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
builtin/mainmenu/dlg_config_world.lua
+8
-3
8 additions, 3 deletions
builtin/mainmenu/dlg_config_world.lua
with
8 additions
and
3 deletions
builtin/mainmenu/dlg_config_world.lua
+
8
−
3
View file @
804d65a8
...
...
@@ -16,6 +16,9 @@
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
--------------------------------------------------------------------------------
local
function
modname_valid
(
name
)
return
not
name
:
find
(
"[^a-z0-9_]"
)
end
local
function
get_formspec
(
data
)
...
...
@@ -195,10 +198,12 @@ local function handle_buttons(this, fields)
for
i
,
mod
in
ipairs
(
rawlist
)
do
if
not
mod
.
is_modpack
and
mod
.
typ
~=
"game_mod"
then
if
mod
.
enabled
then
worldfile
:
set
(
"load_mod_"
..
mod
.
name
,
"true"
)
if
mod
name_valid
(
mod
.
name
)
then
worldfile
:
set
(
"load_mod_"
..
mod
.
name
,
tostring
(
mod
.
enabled
)
)
else
worldfile
:
set
(
"load_mod_"
..
mod
.
name
,
"false"
)
if
mod
.
enabled
then
gamedata
.
errormessage
=
fgettext_ne
(
"Failed to enable mod \"
$
1
\
" as it contains disallowed characters. Only chararacters [a-z0-9_] are allowed."
,
mod
.
name
)
end
end
mods
[
"load_mod_"
..
mod
.
name
]
=
nil
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment