mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Setting limits: Fix message text in advanced settings tab
It would complain that the value should be higher than the lower bound, when it should be higher than or equal to the lower bound. Similar issue for the upper bound.
This commit is contained in:
parent
02112f84e2
commit
c98ae2a91f
@ -479,13 +479,13 @@ local function handle_change_setting_buttons(this, fields)
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
if setting.min and new_value < setting.min then
|
if setting.min and new_value < setting.min then
|
||||||
this.data.error_message = fgettext_ne("The value must be greater than $1.", setting.min)
|
this.data.error_message = fgettext_ne("The value must be at least $1.", setting.min)
|
||||||
this.data.entered_text = fields["te_setting_value"]
|
this.data.entered_text = fields["te_setting_value"]
|
||||||
core.update_formspec(this:get_formspec())
|
core.update_formspec(this:get_formspec())
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
if setting.max and new_value > setting.max then
|
if setting.max and new_value > setting.max then
|
||||||
this.data.error_message = fgettext_ne("The value must be lower than $1.", setting.max)
|
this.data.error_message = fgettext_ne("The value must not be larger than $1.", setting.max)
|
||||||
this.data.entered_text = fields["te_setting_value"]
|
this.data.entered_text = fields["te_setting_value"]
|
||||||
core.update_formspec(this:get_formspec())
|
core.update_formspec(this:get_formspec())
|
||||||
return true
|
return true
|
||||||
|
Loading…
Reference in New Issue
Block a user