24 lines
633 B
Go
24 lines
633 B
Go
|
|
package session
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"github.com/df-mc/dragonfly/server/world"
|
||
|
|
"github.com/sandertv/gophertunnel/minecraft/protocol/packet"
|
||
|
|
)
|
||
|
|
|
||
|
|
// RespawnHandler handles the Respawn packet.
|
||
|
|
type RespawnHandler struct{}
|
||
|
|
|
||
|
|
// Handle ...
|
||
|
|
func (*RespawnHandler) Handle(p packet.Packet, _ *Session, _ *world.Tx, c Controllable) error {
|
||
|
|
pk := p.(*packet.Respawn)
|
||
|
|
if pk.EntityRuntimeID != selfEntityRuntimeID {
|
||
|
|
return errSelfRuntimeID
|
||
|
|
}
|
||
|
|
if pk.State != packet.RespawnStateClientReadyToSpawn {
|
||
|
|
return fmt.Errorf("respawn state must always be %v, but got %v", packet.RespawnStateClientReadyToSpawn, pk.State)
|
||
|
|
}
|
||
|
|
c.Respawn()
|
||
|
|
return nil
|
||
|
|
}
|