Fix world unset

This commit is contained in:
Cohee 2024-01-07 19:00:16 +02:00
parent 247048ebfa
commit c54746b21c
1 changed files with 2 additions and 2 deletions

View File

@ -2310,8 +2310,8 @@ function onWorldInfoChange(args, text) {
}); });
$('#world_info').trigger('change'); $('#world_info').trigger('change');
} else { // if no args, unset all worlds } else { // if no args, unset all worlds
toastr.success('Deactivated all worlds'); if (!silent) toastr.success('Deactivated all worlds');
if (!silent) selected_world_info = []; selected_world_info = [];
$('#world_info').val(null).trigger('change'); $('#world_info').val(null).trigger('change');
} }
} else { //if it's a pointer selection } else { //if it's a pointer selection