mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 20:07:09 +00:00
Removed KiwiIRC chat, use official freenode webirc
This commit is contained in:
parent
3cffa66490
commit
14e1dda327
@ -34,8 +34,7 @@ The entire server is done in PHP, and has been tested, profiled and optimized to
|
||||
### [Twitter @PocketMine](https://twitter.com/PocketMine)
|
||||
|
||||
## IRC Chat #pocketmine (or #mcpedevs) @ irc.freenode.net
|
||||
[](https://kiwiirc.com/client/chat.freenode.net/#pocketmine)
|
||||
[](https://kiwiirc.com/client/chat.freenode.net/#mcpedevs)
|
||||
[#pocketmine + #mcpedevs channel WebIRC](http://webchat.freenode.net/?channels=pocketmine,mcpedevs)
|
||||
|
||||
|
||||
## Third-party Libraries/Protocols Used
|
||||
|
@ -315,9 +315,7 @@ class PMFLevel extends PMF{
|
||||
$aX = $x - ($X << 4);
|
||||
$aZ = $z - ($Z << 4);
|
||||
$aY = $y - ($Y << 4);
|
||||
$b = ord($this->chunks[$index]
|
||||
[$Y]
|
||||
{(int) ($aY + ($aX << 5) + ($aZ << 9))});
|
||||
$b = ord($this->chunks[$index][$Y]{(int) ($aY + ($aX << 5) + ($aZ << 9))});
|
||||
return $b;
|
||||
}
|
||||
|
||||
|
@ -154,6 +154,7 @@ class NBT{
|
||||
$this->parseTree($value);
|
||||
break;
|
||||
default:
|
||||
echo bin2hex(substr($this->binary, $this->offset - 1)).PHP_EOL.PHP_EOL;
|
||||
die("Invalid NBT Tag $tag");
|
||||
break;
|
||||
}
|
||||
@ -198,6 +199,7 @@ class NBT{
|
||||
$this->parseTree($value);
|
||||
break;
|
||||
default:
|
||||
echo bin2hex(substr($this->binary, $this->offset - 1)).PHP_EOL.PHP_EOL;
|
||||
die("Invalid NBT Tag $tag");
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user