Fix WI overflow alert

This commit is contained in:
Cohee1207 2023-08-07 22:12:50 +03:00
parent f8e8929834
commit 32e5566a37

View File

@ -1511,7 +1511,7 @@ jQuery(() => {
}); });
$('#world_info_overflow_alert').on('change', function () { $('#world_info_overflow_alert').on('change', function () {
world_info_overflow_alert = $(this).val(); world_info_overflow_alert = !!$(this).prop('checked');
saveSettingsDebounced(); saveSettingsDebounced();
}); });