mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
ResourcePacksSessionHandler: remove useless brackets
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user