Skip to content

Commit

Permalink
fix: huskhomes warp gui no warp
Browse files Browse the repository at this point in the history
  • Loading branch information
DongShaoNB committed Jul 30, 2024
1 parent 1231a7e commit 831282c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,11 @@ class HuskHomesForm {
player.chat("/warp " + simpleFormResponse.clickedButton().text())
}
warps.thenAccept { warpList ->
warpList.forEach { form.button(it.name) }
for (warp in warpList) {
form.button(warp.identifier)
}
BedrockPlayerSupport.floodgateApi.sendForm(player.uniqueId, form)
}
BedrockPlayerSupport.floodgateApi.sendForm(player.uniqueId, form)
}

}

0 comments on commit 831282c

Please sign in to comment.