Bundle change for #9591

This commit is contained in:
Anuken
2024-02-24 12:31:06 -05:00
parent 82222c8707
commit d8a66b7b25
3 changed files with 5 additions and 5 deletions

View File

@@ -72,9 +72,9 @@ public class HudFragment{
Events.on(SectorCaptureEvent.class, e -> {
if(e.sector.isBeingPlayed()){
ui.announce(Core.bundle.format("sector.capture", ""), 5f);
ui.announce("@sector.capture.current", 5f);
}else{
showToast(Core.bundle.format("sector.capture", e.sector.name() + " "));
showToast(Core.bundle.format("sector.capture", e.sector.name()));
}
});