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

@@ -775,8 +775,8 @@ sector.curlost = Sector Lost
sector.missingresources = [scarlet]Insufficient Core Resources sector.missingresources = [scarlet]Insufficient Core Resources
sector.attacked = Sector [accent]{0}[white] under attack! sector.attacked = Sector [accent]{0}[white] under attack!
sector.lost = Sector [accent]{0}[white] lost! sector.lost = Sector [accent]{0}[white] lost!
#note: the missing space in the line below is intentional sector.capture = Sector [accent]{0}[white] Captured!
sector.capture = Sector [accent]{0}[white]Captured! sector.capture.current = Sector Captured!
sector.changeicon = Change Icon sector.changeicon = Change Icon
sector.noswitch.title = Unable to Switch Sectors sector.noswitch.title = Unable to Switch Sectors
sector.noswitch = You may not switch sectors while an existing sector is under attack.\n\nSector: [accent]{0}[] on [accent]{1}[] sector.noswitch = You may not switch sectors while an existing sector is under attack.\n\nSector: [accent]{0}[] on [accent]{1}[]

View File

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

View File

@@ -25,4 +25,4 @@ org.gradle.caching=true
#used for slow jitpack builds; TODO see if this actually works #used for slow jitpack builds; TODO see if this actually works
org.gradle.internal.http.socketTimeout=100000 org.gradle.internal.http.socketTimeout=100000
org.gradle.internal.http.connectionTimeout=100000 org.gradle.internal.http.connectionTimeout=100000
archash=a2acd2ee5f archash=580916ccfd