mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-20 16:00:20 +00:00
Fixed teleport crash
This commit is contained in:
parent
d573f8f6da
commit
ab3862446c
3
TODO
3
TODO
@ -1,3 +1,4 @@
|
||||
- Save placed blocks and relay them to other players.
|
||||
- Fix spawn position resetting to 0,128,0
|
||||
- Mob spawning, item pick up
|
||||
- Mob spawning, item pick up
|
||||
- Fix metadata orientation
|
@ -96,11 +96,11 @@ class PlayerAPI{
|
||||
public function tppos($name, $x, $y, $z){
|
||||
$player = $this->get($name);
|
||||
if($player !== false){
|
||||
$this->player->dataPacket(MC_MOVE_PLAYER, array(
|
||||
"eid" => $player->eid,
|
||||
"x" => $player->x,
|
||||
"y" => $player->y,
|
||||
"z" => $player->z,
|
||||
$player->dataPacket(MC_MOVE_PLAYER, array(
|
||||
"eid" => 0,
|
||||
"x" => $x,
|
||||
"y" => $y,
|
||||
"z" => $z,
|
||||
"yaw" => 0,
|
||||
"pitch" => 0,
|
||||
));
|
||||
|
@ -276,7 +276,7 @@ class Session{
|
||||
"z" => $this->data["spawn"]["z"],
|
||||
"unknown1" => 0,
|
||||
"gamemode" => $this->server->gamemode,
|
||||
"eid" => $this->eid,
|
||||
"eid" => 0,
|
||||
));
|
||||
break;
|
||||
case MC_READY:
|
||||
|
Loading…
x
Reference in New Issue
Block a user