1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Fix parameter passing to gettext call

This commit is contained in:
PilzAdam 2015-10-25 19:14:07 +01:00
parent eb92bfb030
commit eba5f7cd6c

View File

@ -493,7 +493,7 @@ local function handle_change_setting_buttons(this, fields)
value = value:trim()
if not value:match(CHAR_CLASSES.FLAGS .. "+")
or not setting.possible:match("[,]?" .. value .. "[,]?") then
this.data.error_message = fgettext_ne("\"" .. value .. "\" is not a valid flag.")
this.data.error_message = fgettext_ne("\"$1\" is not a valid flag.", value)
this.data.entered_text = fields["te_setting_value"]
core.update_formspec(this:get_formspec())
return true