Advertisement
Guest User

Untitled

a guest
Jan 24th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. Genisys Crash Dump Sun Jan 24 12:02:27 UTC 2016
  2.  
  3. Error: 'continue' not in the 'loop' or 'switch' context
  4. File: /ItemCasePE_v1.0.8.phar/src/aliuly/itemcasepe/Main
  5. Line: 184
  6. Type: E_COMPILE_ERROR
  7.  
  8. THIS CRASH WAS CAUSED BY A PLUGIN
  9. 此次出错由插件引起
  10.  
  11. Code:
  12. [175] public function spawnPlayerCases(Player $pl,Level $level){
  13. [176] if (!isset($this->cases[$level->getName()])) return;
  14. [177] foreach (array_keys($this->cases[$level->getName()]) as $cid) {
  15. [178] $this->sndItemCase($level,$cid,[$pl]);
  16. [179] }
  17. [180] }
  18. [181] public function spawnLevelItemCases(Level $level){
  19. [182] if (!isset($this->cases[$level->getName()])) return;
  20. [183] $ps = $level->getPlayers();
  21. [184] if (!count($ps)) continue;
  22. [185] foreach (array_keys($this->cases[$level->getName()]) as $cid) {
  23. [186] $this->sndItemCase($level,$cid,$ps);
  24. [187] }
  25. [188] }
  26. [189]
  27. [190] public function despawnPlayerCases(Player $pl,Level $level){
  28. [191] $world = $level->getName();
  29. [192] if (!isset($this->cases[$world])) return;
  30. [193] foreach (array_keys($this->cases[$world]) as $cid) {
  31. [194] $this->rmItemCase($level,$cid,[$pl]);
  32.  
  33. Backtrace:
  34. #0 (): pocketmine\Server->crashDump(boolean)
  35.  
  36. Genisys version: 1.0dev #23 [Protocol 38; API 1.13.1]
  37. uname -a: Linux MineCraft 3.19.0-47-generic #53-Ubuntu SMP Mon Jan 18 14:02:48 UTC 2016 x86_64
  38. PHP version: 7.0.2
  39. Zend version: 3.0.0
  40. OS : Linux, linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement