Skip to content

Commit

Permalink
Update game SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
BomBardyGamer committed Dec 10, 2023
1 parent 2e88705 commit aa3b986
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

dependencies {
implementation("dev.emortal.minestom:game-sdk:7b8e6b6")
implementation("dev.emortal.minestom:game-sdk:5fdd697")

implementation("dev.emortal:rayfast:e6ebf1f")
implementation("com.github.emortaldev:Particable:f7212f39fb")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,12 @@ public void victory(@NotNull Set<Player> winners) {

Title victoryTitle = Title.title(
MiniMessage.miniMessage().deserialize("<gradient:#ffc570:gold><bold>VICTORY!</bold></gradient>"),
Component.text(GameWinLoseMessages.VICTORY.random(), NamedTextColor.GRAY),
Component.text(GameWinLoseMessages.randomVictory(), NamedTextColor.GRAY),
Title.Times.times(Duration.ZERO, Duration.ofSeconds(2), Duration.ofSeconds(4))
);
Title defeatTitle = Title.title(
MiniMessage.miniMessage().deserialize("<gradient:#ff474e:#ff0d0d><bold>DEFEAT!</bold></gradient>"),
Component.text(GameWinLoseMessages.DEFEAT.random(), NamedTextColor.GRAY),
Component.text(GameWinLoseMessages.randomDefeat(), NamedTextColor.GRAY),
Title.Times.times(Duration.ZERO, Duration.ofSeconds(2), Duration.ofSeconds(4))
);

Expand Down

0 comments on commit aa3b986

Please sign in to comment.