mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-15 10:19:39 +00:00
ResourcePacksSessionHandler: remove useless brackets
This commit is contained in:
parent
25a5394152
commit
b9cd96f6e0
@ -117,7 +117,7 @@ class ResourcePacksSessionHandler extends SessionHandler{
|
||||
$pk->packId = $pack->getPackId();
|
||||
$pk->chunkIndex = $packet->chunkIndex;
|
||||
$pk->data = $pack->getPackChunk(self::PACK_CHUNK_SIZE * $packet->chunkIndex, self::PACK_CHUNK_SIZE);
|
||||
$pk->progress = (self::PACK_CHUNK_SIZE * $packet->chunkIndex);
|
||||
$pk->progress = self::PACK_CHUNK_SIZE * $packet->chunkIndex;
|
||||
$this->session->sendDataPacket($pk);
|
||||
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user