mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Re-added the old sendForm methods
This commit is contained in:
parent
bd1cc26bf3
commit
94445a5222
1 changed files with 16 additions and 0 deletions
|
@ -1381,6 +1381,22 @@ public class GeyserSession implements GeyserConnection, CommandSender {
|
||||||
formCache.showForm(formBuilder.build());
|
formCache.showForm(formBuilder.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated since Cumulus version 1.1, and will be removed when Cumulus 2.0 releases. Please use the new forms instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void sendForm(org.geysermc.cumulus.Form<?> form) {
|
||||||
|
sendForm(form.newForm());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated since Cumulus version 1.1, and will be removed when Cumulus 2.0 releases. Please use the new forms instead.
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public void sendForm(org.geysermc.cumulus.util.FormBuilder<?, ?, ?, ?> formBuilder) {
|
||||||
|
sendForm(formBuilder.build());
|
||||||
|
}
|
||||||
|
|
||||||
private void startGame() {
|
private void startGame() {
|
||||||
StartGamePacket startGamePacket = new StartGamePacket();
|
StartGamePacket startGamePacket = new StartGamePacket();
|
||||||
startGamePacket.setUniqueEntityId(playerEntity.getGeyserId());
|
startGamePacket.setUniqueEntityId(playerEntity.getGeyserId());
|
||||||
|
|
Loading…
Reference in a new issue