mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-05 01:29:55 +00:00
Fixed #1100 Item multiplication cheat
This commit is contained in:
parent
edfcdd0c17
commit
4ae1709196
@ -242,7 +242,7 @@ class Entity extends Position{
|
|||||||
$time = microtime(true);
|
$time = microtime(true);
|
||||||
if($this->class === ENTITY_PLAYER and ($this->player instanceof Player) and $this->player->spawned === true and $this->player->blocked !== true){
|
if($this->class === ENTITY_PLAYER and ($this->player instanceof Player) and $this->player->spawned === true and $this->player->blocked !== true){
|
||||||
foreach($this->server->api->entity->getRadius($this, 1.5, ENTITY_ITEM) as $item){
|
foreach($this->server->api->entity->getRadius($this, 1.5, ENTITY_ITEM) as $item){
|
||||||
if($item->spawntime > 0 and ($time - $item->spawntime) >= 0.6){
|
if($item->closed === false and $item->spawntime > 0 and ($time - $item->spawntime) >= 0.6){
|
||||||
if((($this->player->gamemode & 0x01) === 1 or $this->player->hasSpace($item->type, $item->meta, $item->stack) === true) and $this->server->api->dhandle("player.pickup", array(
|
if((($this->player->gamemode & 0x01) === 1 or $this->player->hasSpace($item->type, $item->meta, $item->stack) === true) and $this->server->api->dhandle("player.pickup", array(
|
||||||
"eid" => $this->player->eid,
|
"eid" => $this->player->eid,
|
||||||
"player" => $this->player,
|
"player" => $this->player,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user