-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 9aab294 Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Thu Apr 27 00:37:13 2023 +0200 1.19.80 commit 179c1b9 Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Wed Apr 26 22:57:30 2023 +0200 argument type constants for 1.19.80 commit 9c3ddbd Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Sun Apr 23 05:27:26 2023 +0200 Update AvailableCommandsPacket.php commit 58d6559 Author: JoseLuisHD <joseluis.herrejon.developer@gmail.com> Date: Sat Apr 22 20:16:11 2023 -0600 1.19.80 signs support & sign editor mode commit bb5daba Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Sat Apr 22 21:47:03 2023 +0200 implement 1.19.80 support commit dcfd2ca Merge: 19fda72 9b6cd5c Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Fri Apr 14 00:02:07 2023 +0200 Merge branch 'master' into 1.19.80 commit 19fda72 Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Sun Apr 2 16:36:26 2023 +0200 next is 1.13.0 commit df90040 Author: Benedikt05 <60869945+Benedikt05@users.noreply.github.com> Date: Sun Apr 2 16:04:29 2023 +0200 1.19.80: joining works
- Loading branch information
1 parent
caac805
commit 83c058d
Showing
22 changed files
with
471 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
|
||
declare(strict_types=1); | ||
|
||
namespace pocketmine\network\mcpe\protocol; | ||
|
||
#include <rules/DataPacket.h> | ||
|
||
use pocketmine\network\mcpe\NetworkSession; | ||
|
||
class OpenSignPacket extends DataPacket{ | ||
public const NETWORK_ID = ProtocolInfo::OPEN_SIGN_PACKET; | ||
|
||
public int $x; | ||
public int $y; | ||
public int $z; | ||
public bool $isFrontSide; | ||
|
||
public function decodePayload(){ | ||
$this->getBlockPosition($this->x, $this->y, $this->z); | ||
$this->isFrontSide = $this->getBool(); | ||
} | ||
|
||
public function encodePayload(){ | ||
$this->putBlockPosition($this->x, $this->y, $this->z); | ||
$this->putBool($this->isFrontSide); | ||
} | ||
|
||
public function handle(NetworkSession $session) : bool{ | ||
return $session->handleOpenSign($this); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 0 additions & 52 deletions
52
src/pocketmine/network/mcpe/protocol/PhotoInfoRequestPacket.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.