Minor language changes

This commit is contained in:
ErrorNoInternet
2023-01-30 14:52:02 +08:00
parent 352e5ab356
commit 9a26f43148

View File

@@ -876,7 +876,11 @@ pub async fn process_command(
end_index -= 1
}
let paged_locations = &locations[start_index..end_index];
return format!("Locations (page {}): {}", page, paged_locations.join(", "));
return format!(
"Mob Locations (page {}): {}",
page,
paged_locations.join(", ")
);
}
Command::ToggleAlertMessages => {
if state.alert_players.lock().unwrap().contains(executor) {