diff --git a/Art/Skywars/Skywars.lip b/Art/Skywars/Skywars.lip new file mode 100644 index 000000000..b60d24dec Binary files /dev/null and b/Art/Skywars/Skywars.lip differ diff --git a/Art/Skywars/Skywars.png b/Art/Skywars/Skywars.png new file mode 100644 index 000000000..15e39932a Binary files /dev/null and b/Art/Skywars/Skywars.png differ diff --git a/Art/Skywars/Skywars.psd b/Art/Skywars/Skywars.psd new file mode 100644 index 000000000..3467ec1a0 Binary files /dev/null and b/Art/Skywars/Skywars.psd differ diff --git a/Plugins/Mineplex.Core/src/mineplex/core/achievement/Achievement.java b/Plugins/Mineplex.Core/src/mineplex/core/achievement/Achievement.java index e41295b3b..a1d818cca 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/achievement/Achievement.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/achievement/Achievement.java @@ -87,8 +87,8 @@ public enum Achievement //Skywars SKYWARS_WINS("Sky King",2000, new String[]{"Skywars.Wins"}, - new String[]{"Win 50 Games of Skywars"}, - new int[]{50}, + new String[]{"Win 30 Games of Skywars"}, + new int[]{30}, AchievementCategory.SKYWARS), SKYWARS_BOMBER("Master Bomber",500, @@ -111,8 +111,8 @@ public enum Achievement SKYWARS_PLAYER_KILLS("Cold Blooded Killer",500, new String[]{"Skywars.Kills"}, - new String[]{"Kill 250 Players"}, - new int[]{250}, + new String[]{"Kill 80 Players"}, + new int[]{80}, AchievementCategory.SKYWARS), SKYWARS_NOCHEST("Survivalist",1000, diff --git a/Plugins/Mineplex.Core/src/mineplex/core/benefit/BenefitManager.java b/Plugins/Mineplex.Core/src/mineplex/core/benefit/BenefitManager.java index fe74c528b..3efea719e 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/benefit/BenefitManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/benefit/BenefitManager.java @@ -29,8 +29,9 @@ public class BenefitManager extends MiniDbClientPlugin _repository = new BenefitManagerRepository(plugin); - _benefits.add(new Christmas2014(plugin, _repository, inventoryManager)); + //_benefits.add(new Christmas2014(plugin, _repository, inventoryManager)); //_benefits.add(new Thanksgiving2014(plugin, _repository, inventoryManager)); + _benefits.add(new Players40k(plugin, _repository, inventoryManager)); } @EventHandler(priority = EventPriority.LOWEST) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/game/GameDisplay.java b/Plugins/Mineplex.Core/src/mineplex/core/game/GameDisplay.java index f7f436099..196b046e2 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/game/GameDisplay.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/game/GameDisplay.java @@ -60,7 +60,7 @@ public enum GameDisplay Build("Master Builders", Material.WOOD, (byte)0, GameCategory.CLASSICS, 50), Cards("Craft Against Humanity", Material.MAP, (byte)0, GameCategory.CLASSICS, 51), - Skywars("Skywars", Material.DOUBLE_PLANT, (byte)5, GameCategory.SURVIVAL, 52), + Skywars("Skywars", Material.FEATHER, (byte)5, GameCategory.SURVIVAL, 52), Event("Mineplex Event", Material.CAKE, (byte)0, GameCategory.EVENT, 999); diff --git a/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java b/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java index ac6bdb52a..33dd7047d 100644 --- a/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java +++ b/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java @@ -47,6 +47,7 @@ import mineplex.core.account.CoreClient; import mineplex.core.account.CoreClientManager; import mineplex.core.achievement.AchievementManager; import mineplex.core.aprilfools.AprilFoolsManager; +import mineplex.core.benefit.BenefitManager; import mineplex.core.blockrestore.BlockRestore; import mineplex.core.common.Rank; import mineplex.core.common.util.C; @@ -176,7 +177,7 @@ public class HubManager extends MiniClientPlugin _mountManager = new MountManager(_plugin, clientManager, donationManager, blockRestore, _disguiseManager); _inventoryManager = new InventoryManager(plugin, clientManager); - //new BenefitManager(plugin, clientManager, _inventoryManager); + new BenefitManager(plugin, clientManager, _inventoryManager); _gadgetManager = new GadgetManager(_plugin, clientManager, donationManager, _inventoryManager, _mountManager, petManager, preferences, disguiseManager, blockRestore, new ProjectileManager(plugin)); _treasureManager = new TreasureManager(_plugin, clientManager, donationManager, _inventoryManager, petManager, _blockRestore, hologramManager); new CosmeticManager(_plugin, clientManager, donationManager, _inventoryManager, _gadgetManager, _mountManager, petManager, _treasureManager); diff --git a/Plugins/Mineplex.Hub/src/mineplex/hub/modules/StackerManager.java b/Plugins/Mineplex.Hub/src/mineplex/hub/modules/StackerManager.java index 76a74e62a..c7b57d2e4 100644 --- a/Plugins/Mineplex.Hub/src/mineplex/hub/modules/StackerManager.java +++ b/Plugins/Mineplex.Hub/src/mineplex/hub/modules/StackerManager.java @@ -57,6 +57,22 @@ public class StackerManager extends MiniPlugin implements IThrown if (event.isCancelled()) return; + Entity stackee = event.getRightClicked(); + if (stackee == null) + return; + + if (!(stackee instanceof LivingEntity)) + return; + + if (stackee instanceof Horse) + return; + + if (stackee instanceof EnderDragon) + return; + + if (stackee instanceof Player && ((Player)stackee).getGameMode() != GameMode.SURVIVAL) + return; + Player stacker = event.getPlayer(); if (stacker.getGameMode() != GameMode.SURVIVAL) @@ -89,22 +105,6 @@ public class StackerManager extends MiniPlugin implements IThrown return; } - Entity stackee = event.getRightClicked(); - if (stackee == null) - return; - - if (!(stackee instanceof LivingEntity)) - return; - - if (stackee instanceof Horse) - return; - - if (stackee instanceof EnderDragon) - return; - - if (stackee instanceof Player && ((Player)stackee).getGameMode() != GameMode.SURVIVAL) - return; - stackerEvent = new StackerEvent(stackee); Bukkit.getServer().getPluginManager().callEvent(stackerEvent); if (stackerEvent.isCancelled()) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java index 66a401d50..8e1e5dc51 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/command/DisguiseCommand.java @@ -18,7 +18,7 @@ public class DisguiseCommand extends CommandBase { public DisguiseCommand(ArcadeManager plugin) { - super(plugin, Rank.YOUTUBE, new Rank[] {Rank.YOUTUBE}, "disguise"); + super(plugin, Rank.ADMIN, new Rank[] {Rank.YOUTUBE, Rank.TWITCH}, "disguise"); } @Override diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/Skywars.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/Skywars.java index 7c944f886..c64af6eaa 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/Skywars.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/Skywars.java @@ -260,7 +260,8 @@ public class Skywars extends SoloGame zombie.setRemoveWhenFarAway(false); zombie.setCustomName(C.cDRed + "Zombie Guardian"); zombie.setCustomNameVisible(true); - zombie.setMaxHealth(20.0D); + zombie.setMaxHealth(15); + zombie.setHealth(15); CreatureAllowOverride = false; // Armor - Make sure the player can't get it! @@ -415,7 +416,7 @@ public class Skywars extends SoloGame setAlreadyAnnounced(true); } - for (int i = 0; i < 5; i++) + for (int i = 0; i < 4; i++) { Block bestBlock = null; double bestDist = 0.0D; @@ -619,7 +620,7 @@ public class Skywars extends SoloGame validChest.setTypeIdAndData(Material.CHEST.getId(), (byte) UtilMath.r(4), false); - _worldBlocks.add(block); + _worldBlocks.add(validChest); done++; } @@ -1117,8 +1118,8 @@ public class Skywars extends SoloGame //Projectile _playerProjectile.addLoot(new RandomItem(Material.ARROW, 18, 2, 8)); - _playerProjectile.addLoot(new RandomItem(Material.SNOW_BALL, 60, 2, 8)); - _playerProjectile.addLoot(new RandomItem(Material.EGG, 60, 2, 8)); + _playerProjectile.addLoot(new RandomItem(Material.SNOW_BALL, 60, 2, 5)); + _playerProjectile.addLoot(new RandomItem(Material.EGG, 60, 2, 5)); //Block _playerBlock.addLoot(new RandomItem(Material.COBBLESTONE, 30, 8, 16)); diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/data/TNTGenerator.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/data/TNTGenerator.java index 06afa0711..e13c98f0f 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/data/TNTGenerator.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/skywars/data/TNTGenerator.java @@ -122,7 +122,7 @@ public class TNTGenerator 2, F.item(C.cYellow + C.Bold + "Left Click - Far " + C.cWhite + " / " + C.cYellow + C.Bold - + " Right Click - Short"))); + + " Right Click - Drop"))); player.playSound(player.getLocation(), Sound.ENDERDRAGON_HIT, 3F, 1F); diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkMadScientist.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkMadScientist.java index 07ee9cf6c..e25e1b16b 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkMadScientist.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/perks/PerkMadScientist.java @@ -9,6 +9,7 @@ import mineplex.core.common.util.UtilEnt; import mineplex.core.common.util.UtilInv; import mineplex.core.common.util.UtilMath; import mineplex.core.common.util.UtilParticle; +import mineplex.core.common.util.UtilTime; import mineplex.core.common.util.UtilParticle.ParticleType; import mineplex.core.common.util.UtilParticle.ViewDist; import mineplex.core.common.util.UtilServer; @@ -68,6 +69,9 @@ public class PerkMadScientist extends Perk implements IThrown if (Manager.GetGame() == null) return; + + if (!UtilTime.elapsed(Manager.GetGame().GetStateTime(), 60000)) + return; for (Player player : Manager.GetGame().GetPlayers(true)) { @@ -226,47 +230,48 @@ public class PerkMadScientist extends Perk implements IThrown //Name zombie.setCustomName(C.cAqua + UtilEnt.getName(data.GetThrower()) + "'s Minion"); + zombie.setCustomNameVisible(true); - double r = Math.random(); - - DisguiseBase disguise; - if (r > 0.8) - { - disguise = new DisguiseZombie(zombie); - } - else if (r > 0.6) - { - disguise = new DisguiseBlaze(zombie); - } - else if (r > 0.4) - { - disguise = new DisguiseSpider(zombie); - } - else if (r > 0.2) - { - disguise = new DisguiseSkeleton(zombie); - } - else - { - disguise = new DisguiseSlime(zombie); - ((DisguiseSlime)disguise).SetSize(2); - } - - if (disguise instanceof DisguiseInsentient) - { - if (((Player) data.GetThrower()).getName().toLowerCase().endsWith("s")) - { - ((DisguiseInsentient)disguise).setName(C.cAqua + UtilEnt.getName(data.GetThrower()) + "' Minion"); - } - else - { - ((DisguiseInsentient)disguise).setName(C.cAqua + UtilEnt.getName(data.GetThrower()) + "' Minion"); - } - - ((DisguiseInsentient)disguise).setCustomNameVisible(true); - } - - Manager.GetDisguise().disguise(disguise); +// double r = Math.random(); +// +// DisguiseBase disguise; +// if (r > 0.8) +// { +// disguise = new DisguiseZombie(zombie); +// } +// else if (r > 0.6) +// { +// disguise = new DisguiseBlaze(zombie); +// } +// else if (r > 0.4) +// { +// disguise = new DisguiseSpider(zombie); +// } +// else if (r > 0.2) +// { +// disguise = new DisguiseSkeleton(zombie); +// } +// else +// { +// disguise = new DisguiseSlime(zombie); +// ((DisguiseSlime)disguise).SetSize(2); +// } +// +// if (disguise instanceof DisguiseInsentient) +// { +// if (((Player) data.GetThrower()).getName().toLowerCase().endsWith("s")) +// { +// ((DisguiseInsentient)disguise).setName(C.cAqua + UtilEnt.getName(data.GetThrower()) + "' Minion"); +// } +// else +// { +// ((DisguiseInsentient)disguise).setName(C.cAqua + UtilEnt.getName(data.GetThrower()) + "' Minion"); +// } +// +// ((DisguiseInsentient)disguise).setCustomNameVisible(true); +// } +// +// Manager.GetDisguise().disguise(disguise); Manager.GetGame().CreatureAllowOverride = false; diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/stats/ExperienceStatTracker.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/stats/ExperienceStatTracker.java index 515c8aece..17677ad64 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/stats/ExperienceStatTracker.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/stats/ExperienceStatTracker.java @@ -68,12 +68,19 @@ public class ExperienceStatTracker extends StatTracker //Game Time = 1 Exp per 3 Seconds long time = System.currentTimeMillis(); + //Exp Until They Quit - if (!player.isOnline() && _playerQuitTime.containsKey(player.getName())) - time = _playerQuitTime.get(player.getName()); - //No Time Exp - else - time = _startTime; + if (!player.isOnline()) + { + if (_playerQuitTime.containsKey(player.getName())) + { + time = _playerQuitTime.get(player.getName()); + } + else + { + time = _startTime; + } + } double timeExp = (time - _startTime)/1500d; diff --git a/Pocket/LICENSE b/Pocket/LICENSE new file mode 100644 index 000000000..02bbb60bc --- /dev/null +++ b/Pocket/LICENSE @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. \ No newline at end of file diff --git a/Pocket/PocketMine-MP.phar b/Pocket/PocketMine-MP.phar new file mode 100644 index 000000000..e880c34c9 Binary files /dev/null and b/Pocket/PocketMine-MP.phar differ diff --git a/Pocket/README.md b/Pocket/README.md new file mode 100644 index 000000000..7be574e82 --- /dev/null +++ b/Pocket/README.md @@ -0,0 +1,53 @@ +# ![PocketMine-MP](http://cdn.pocketmine.net/img/PocketMine-MP-h.png) + + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . + + +__PocketMine-MP is a free, open-source software that creates Minecraft: Pocket Edition servers and allows extending its functionalities__ + +### [Homepage](http://www.pocketmine.net/) + +### [Forums](http://forums.pocketmine.net/) + +### [Plugin Repository](http://plugins.pocketmine.net/) + + + +### [Official Jenkins server](http://jenkins.pocketmine.net/) + +### API Documentation + * [Official Doxygen-generated documentation](http://docs.pocketmine.net/) + * [Latest Doxygen generated from development](http://jenkins.pocketmine.net/job/PocketMine-MP-doc/doxygen/) + +### [Twitter @PocketMine](https://twitter.com/PocketMine) + +### IRC Chat #pocketmine (or #mcpedevs) @ irc.freenode.net +[#pocketmine + #mcpedevs channel WebIRC](http://webchat.freenode.net/?channels=pocketmine,mcpedevs) + +### Want to contribute? +* Check the [Contributing Guidelines](CONTRIBUTING.md) + + +## Third-party Libraries/Protocols Used +* __[PHP Sockets](http://php.net/manual/en/book.sockets.php)__ +* __[PHP SQLite3](http://php.net/manual/en/book.sqlite3.php)__ +* __[PHP BCMath](http://php.net/manual/en/book.bc.php)__ +* __[PHP pthreads](http://pthreads.org/)__ by _[krakjoe](https://github.com/krakjoe)_: Threading for PHP - Share Nothing, Do Everything. +* __[PHP YAML](https://code.google.com/p/php-yaml/)__ by _Bryan Davis_: The Yaml PHP Extension provides a wrapper to the LibYAML library. +* __[LibYAML](http://pyyaml.org/wiki/LibYAML)__ by _Kirill Simonov_: A YAML 1.1 parser and emitter written in C. +* __[cURL](http://curl.haxx.se/)__: cURL is a command line tool for transferring data with URL syntax +* __[Zlib](http://www.zlib.net/)__: A Massively Spiffy Yet Delicately Unobtrusive Compression Library +* __[Source RCON Protocol](https://developer.valvesoftware.com/wiki/Source_RCON_Protocol)__ +* __[UT3 Query Protocol](http://wiki.unrealadmin.org/UT3_query_protocol)__ diff --git a/Pocket/banned-ips.txt b/Pocket/banned-ips.txt new file mode 100644 index 000000000..e69de29bb diff --git a/Pocket/banned-players.txt b/Pocket/banned-players.txt new file mode 100644 index 000000000..a24466c9e --- /dev/null +++ b/Pocket/banned-players.txt @@ -0,0 +1,6 @@ +# Updated 06/29/15 12:14 by PocketMine-MP 1.5dev-1254 +# victim name | ban date | banned by | banned until | reason + +fanta|2015-06-29 12:12:30 +1000|CONSOLE|Forever|Banned by an operator. +xflare_|2015-06-29 12:14:49 +1000|CONSOLE|Forever|Banned by an operator. +fantasticps3|2015-06-29 12:14:53 +1000|CONSOLE|Forever|Banned by an operator. diff --git a/Pocket/ops.txt b/Pocket/ops.txt new file mode 100644 index 000000000..587eb3d83 --- /dev/null +++ b/Pocket/ops.txt @@ -0,0 +1 @@ +chiss \ No newline at end of file diff --git a/Pocket/players/15ibans.dat b/Pocket/players/15ibans.dat new file mode 100644 index 000000000..00e25aea7 Binary files /dev/null and b/Pocket/players/15ibans.dat differ diff --git a/Pocket/players/1milcorruptmpmod.dat b/Pocket/players/1milcorruptmpmod.dat new file mode 100644 index 000000000..bba82f7a4 Binary files /dev/null and b/Pocket/players/1milcorruptmpmod.dat differ diff --git a/Pocket/players/221b.dat b/Pocket/players/221b.dat new file mode 100644 index 000000000..eda06d624 Binary files /dev/null and b/Pocket/players/221b.dat differ diff --git a/Pocket/players/3vandg.dat b/Pocket/players/3vandg.dat new file mode 100644 index 000000000..000147b3b Binary files /dev/null and b/Pocket/players/3vandg.dat differ diff --git a/Pocket/players/_asuna_.dat b/Pocket/players/_asuna_.dat new file mode 100644 index 000000000..4191bea95 Binary files /dev/null and b/Pocket/players/_asuna_.dat differ diff --git a/Pocket/players/ace.dat b/Pocket/players/ace.dat new file mode 100644 index 000000000..e89e0aa89 Binary files /dev/null and b/Pocket/players/ace.dat differ diff --git a/Pocket/players/adam_tdc.dat b/Pocket/players/adam_tdc.dat new file mode 100644 index 000000000..63e6a9ba3 Binary files /dev/null and b/Pocket/players/adam_tdc.dat differ diff --git a/Pocket/players/adamaxeman.dat b/Pocket/players/adamaxeman.dat new file mode 100644 index 000000000..510506b2d Binary files /dev/null and b/Pocket/players/adamaxeman.dat differ diff --git a/Pocket/players/aleeex.dat b/Pocket/players/aleeex.dat new file mode 100644 index 000000000..e66cdd549 Binary files /dev/null and b/Pocket/players/aleeex.dat differ diff --git a/Pocket/players/alpharaptor.dat b/Pocket/players/alpharaptor.dat new file mode 100644 index 000000000..a69b3bbc7 Binary files /dev/null and b/Pocket/players/alpharaptor.dat differ diff --git a/Pocket/players/anonie.dat b/Pocket/players/anonie.dat new file mode 100644 index 000000000..e9b9b7968 Binary files /dev/null and b/Pocket/players/anonie.dat differ diff --git a/Pocket/players/anthony2202.dat b/Pocket/players/anthony2202.dat new file mode 100644 index 000000000..066acd233 Binary files /dev/null and b/Pocket/players/anthony2202.dat differ diff --git a/Pocket/players/antlo.dat b/Pocket/players/antlo.dat new file mode 100644 index 000000000..64794c66b Binary files /dev/null and b/Pocket/players/antlo.dat differ diff --git a/Pocket/players/arcticzeroo.dat b/Pocket/players/arcticzeroo.dat new file mode 100644 index 000000000..e006f8992 Binary files /dev/null and b/Pocket/players/arcticzeroo.dat differ diff --git a/Pocket/players/art.dat b/Pocket/players/art.dat new file mode 100644 index 000000000..542365aa0 Binary files /dev/null and b/Pocket/players/art.dat differ diff --git a/Pocket/players/artix.dat b/Pocket/players/artix.dat new file mode 100644 index 000000000..5e6974db7 Binary files /dev/null and b/Pocket/players/artix.dat differ diff --git a/Pocket/players/ass.dat b/Pocket/players/ass.dat new file mode 100644 index 000000000..9e215f722 Binary files /dev/null and b/Pocket/players/ass.dat differ diff --git a/Pocket/players/b_r_a_d.dat b/Pocket/players/b_r_a_d.dat new file mode 100644 index 000000000..ab328b066 Binary files /dev/null and b/Pocket/players/b_r_a_d.dat differ diff --git a/Pocket/players/baconbeanbag.dat b/Pocket/players/baconbeanbag.dat new file mode 100644 index 000000000..a8f026981 Binary files /dev/null and b/Pocket/players/baconbeanbag.dat differ diff --git a/Pocket/players/bagel.dat b/Pocket/players/bagel.dat new file mode 100644 index 000000000..b20bee2fd Binary files /dev/null and b/Pocket/players/bagel.dat differ diff --git a/Pocket/players/barck_obama.dat b/Pocket/players/barck_obama.dat new file mode 100644 index 000000000..1a94870c2 Binary files /dev/null and b/Pocket/players/barck_obama.dat differ diff --git a/Pocket/players/biohazard_.dat b/Pocket/players/biohazard_.dat new file mode 100644 index 000000000..e11e07139 Binary files /dev/null and b/Pocket/players/biohazard_.dat differ diff --git a/Pocket/players/blairboys12.dat b/Pocket/players/blairboys12.dat new file mode 100644 index 000000000..59725a0ce Binary files /dev/null and b/Pocket/players/blairboys12.dat differ diff --git a/Pocket/players/blazespot.dat b/Pocket/players/blazespot.dat new file mode 100644 index 000000000..d0f5b801e Binary files /dev/null and b/Pocket/players/blazespot.dat differ diff --git a/Pocket/players/blondebug.dat b/Pocket/players/blondebug.dat new file mode 100644 index 000000000..44ebcddd4 Binary files /dev/null and b/Pocket/players/blondebug.dat differ diff --git a/Pocket/players/bloodmiester.dat b/Pocket/players/bloodmiester.dat new file mode 100644 index 000000000..5fe392cc5 Binary files /dev/null and b/Pocket/players/bloodmiester.dat differ diff --git a/Pocket/players/bloodmiester_.dat b/Pocket/players/bloodmiester_.dat new file mode 100644 index 000000000..f044c05d5 Binary files /dev/null and b/Pocket/players/bloodmiester_.dat differ diff --git a/Pocket/players/bluebeetlehd.dat b/Pocket/players/bluebeetlehd.dat new file mode 100644 index 000000000..a5603fe5f Binary files /dev/null and b/Pocket/players/bluebeetlehd.dat differ diff --git a/Pocket/players/bob.dat b/Pocket/players/bob.dat new file mode 100644 index 000000000..efdd807c0 Binary files /dev/null and b/Pocket/players/bob.dat differ diff --git a/Pocket/players/boo2300.dat b/Pocket/players/boo2300.dat new file mode 100644 index 000000000..abfddcf90 Binary files /dev/null and b/Pocket/players/boo2300.dat differ diff --git a/Pocket/players/breaddubbs.dat b/Pocket/players/breaddubbs.dat new file mode 100644 index 000000000..eb469bc77 Binary files /dev/null and b/Pocket/players/breaddubbs.dat differ diff --git a/Pocket/players/brickboss64.dat b/Pocket/players/brickboss64.dat new file mode 100644 index 000000000..5f2710f45 Binary files /dev/null and b/Pocket/players/brickboss64.dat differ diff --git a/Pocket/players/bro_yoshi.dat b/Pocket/players/bro_yoshi.dat new file mode 100644 index 000000000..3903b32af Binary files /dev/null and b/Pocket/players/bro_yoshi.dat differ diff --git a/Pocket/players/bswardx.dat b/Pocket/players/bswardx.dat new file mode 100644 index 000000000..b9e2594e2 Binary files /dev/null and b/Pocket/players/bswardx.dat differ diff --git a/Pocket/players/buffymlg.dat b/Pocket/players/buffymlg.dat new file mode 100644 index 000000000..8b134071d Binary files /dev/null and b/Pocket/players/buffymlg.dat differ diff --git a/Pocket/players/byte_.dat b/Pocket/players/byte_.dat new file mode 100644 index 000000000..c9cccbbee Binary files /dev/null and b/Pocket/players/byte_.dat differ diff --git a/Pocket/players/caleb.dat b/Pocket/players/caleb.dat new file mode 100644 index 000000000..89c94f6eb Binary files /dev/null and b/Pocket/players/caleb.dat differ diff --git a/Pocket/players/caleb_wolfheart.dat b/Pocket/players/caleb_wolfheart.dat new file mode 100644 index 000000000..4fa7d650f Binary files /dev/null and b/Pocket/players/caleb_wolfheart.dat differ diff --git a/Pocket/players/carson.dat b/Pocket/players/carson.dat new file mode 100644 index 000000000..901835e3e Binary files /dev/null and b/Pocket/players/carson.dat differ diff --git a/Pocket/players/casuallykaleb.dat b/Pocket/players/casuallykaleb.dat new file mode 100644 index 000000000..cabdab931 Binary files /dev/null and b/Pocket/players/casuallykaleb.dat differ diff --git a/Pocket/players/charcoal_inc.dat b/Pocket/players/charcoal_inc.dat new file mode 100644 index 000000000..35ebf9597 Binary files /dev/null and b/Pocket/players/charcoal_inc.dat differ diff --git a/Pocket/players/chaseymichael.dat b/Pocket/players/chaseymichael.dat new file mode 100644 index 000000000..52bd16f10 Binary files /dev/null and b/Pocket/players/chaseymichael.dat differ diff --git a/Pocket/players/chiss.dat b/Pocket/players/chiss.dat new file mode 100644 index 000000000..ba254f493 Binary files /dev/null and b/Pocket/players/chiss.dat differ diff --git a/Pocket/players/chissling.dat b/Pocket/players/chissling.dat new file mode 100644 index 000000000..4dce3449c Binary files /dev/null and b/Pocket/players/chissling.dat differ diff --git a/Pocket/players/chubbipenguin11.dat b/Pocket/players/chubbipenguin11.dat new file mode 100644 index 000000000..633aa4e02 Binary files /dev/null and b/Pocket/players/chubbipenguin11.dat differ diff --git a/Pocket/players/chucknorris.dat b/Pocket/players/chucknorris.dat new file mode 100644 index 000000000..04bfb6ebe Binary files /dev/null and b/Pocket/players/chucknorris.dat differ diff --git a/Pocket/players/chuckplaysmc.dat b/Pocket/players/chuckplaysmc.dat new file mode 100644 index 000000000..00bbcd18e Binary files /dev/null and b/Pocket/players/chuckplaysmc.dat differ diff --git a/Pocket/players/codename.dat b/Pocket/players/codename.dat new file mode 100644 index 000000000..d5174efad Binary files /dev/null and b/Pocket/players/codename.dat differ diff --git a/Pocket/players/crafterthatcraft.dat b/Pocket/players/crafterthatcraft.dat new file mode 100644 index 000000000..cf98bf9d8 Binary files /dev/null and b/Pocket/players/crafterthatcraft.dat differ diff --git a/Pocket/players/crumplex.dat b/Pocket/players/crumplex.dat new file mode 100644 index 000000000..4269735d3 Binary files /dev/null and b/Pocket/players/crumplex.dat differ diff --git a/Pocket/players/dablueone.dat b/Pocket/players/dablueone.dat new file mode 100644 index 000000000..f05e52f33 Binary files /dev/null and b/Pocket/players/dablueone.dat differ diff --git a/Pocket/players/daddydean.dat b/Pocket/players/daddydean.dat new file mode 100644 index 000000000..edfe8febe Binary files /dev/null and b/Pocket/players/daddydean.dat differ diff --git a/Pocket/players/daflash11.dat b/Pocket/players/daflash11.dat new file mode 100644 index 000000000..e5be54ae6 Binary files /dev/null and b/Pocket/players/daflash11.dat differ diff --git a/Pocket/players/danbo.dat b/Pocket/players/danbo.dat new file mode 100644 index 000000000..d581069ef Binary files /dev/null and b/Pocket/players/danbo.dat differ diff --git a/Pocket/players/daniftw.dat b/Pocket/players/daniftw.dat new file mode 100644 index 000000000..8171f578d Binary files /dev/null and b/Pocket/players/daniftw.dat differ diff --git a/Pocket/players/darthvader.dat b/Pocket/players/darthvader.dat new file mode 100644 index 000000000..9f3d4188a Binary files /dev/null and b/Pocket/players/darthvader.dat differ diff --git a/Pocket/players/dawnbow.dat b/Pocket/players/dawnbow.dat new file mode 100644 index 000000000..d669a438b Binary files /dev/null and b/Pocket/players/dawnbow.dat differ diff --git a/Pocket/players/dctr.dat b/Pocket/players/dctr.dat new file mode 100644 index 000000000..8ffebce18 Binary files /dev/null and b/Pocket/players/dctr.dat differ diff --git a/Pocket/players/defek7.dat b/Pocket/players/defek7.dat new file mode 100644 index 000000000..e42b1c2f4 Binary files /dev/null and b/Pocket/players/defek7.dat differ diff --git a/Pocket/players/dennis.dat b/Pocket/players/dennis.dat new file mode 100644 index 000000000..d2726bfa5 Binary files /dev/null and b/Pocket/players/dennis.dat differ diff --git a/Pocket/players/diddykong.dat b/Pocket/players/diddykong.dat new file mode 100644 index 000000000..389ea95ee Binary files /dev/null and b/Pocket/players/diddykong.dat differ diff --git a/Pocket/players/dj2470.dat b/Pocket/players/dj2470.dat new file mode 100644 index 000000000..e69af08b0 Binary files /dev/null and b/Pocket/players/dj2470.dat differ diff --git a/Pocket/players/dooskeeisback.dat b/Pocket/players/dooskeeisback.dat new file mode 100644 index 000000000..78859afc8 Binary files /dev/null and b/Pocket/players/dooskeeisback.dat differ diff --git a/Pocket/players/drew.dat b/Pocket/players/drew.dat new file mode 100644 index 000000000..4eae5a0ab Binary files /dev/null and b/Pocket/players/drew.dat differ diff --git a/Pocket/players/edgardme3.dat b/Pocket/players/edgardme3.dat new file mode 100644 index 000000000..26fb52fc5 Binary files /dev/null and b/Pocket/players/edgardme3.dat differ diff --git a/Pocket/players/emerald_shy.dat b/Pocket/players/emerald_shy.dat new file mode 100644 index 000000000..053ce45e7 Binary files /dev/null and b/Pocket/players/emerald_shy.dat differ diff --git a/Pocket/players/enderman_665.dat b/Pocket/players/enderman_665.dat new file mode 100644 index 000000000..9a5b35240 Binary files /dev/null and b/Pocket/players/enderman_665.dat differ diff --git a/Pocket/players/epicbluej.dat b/Pocket/players/epicbluej.dat new file mode 100644 index 000000000..7e9f5c31a Binary files /dev/null and b/Pocket/players/epicbluej.dat differ diff --git a/Pocket/players/evilwarriorgirl.dat b/Pocket/players/evilwarriorgirl.dat new file mode 100644 index 000000000..366f6bebb Binary files /dev/null and b/Pocket/players/evilwarriorgirl.dat differ diff --git a/Pocket/players/ezypzy.dat b/Pocket/players/ezypzy.dat new file mode 100644 index 000000000..6ae02cf3e Binary files /dev/null and b/Pocket/players/ezypzy.dat differ diff --git a/Pocket/players/fakesven.dat b/Pocket/players/fakesven.dat new file mode 100644 index 000000000..f329ff061 Binary files /dev/null and b/Pocket/players/fakesven.dat differ diff --git a/Pocket/players/fantasticps3.dat b/Pocket/players/fantasticps3.dat new file mode 100644 index 000000000..e1a9b6358 Binary files /dev/null and b/Pocket/players/fantasticps3.dat differ diff --git a/Pocket/players/fertileturtle88.dat b/Pocket/players/fertileturtle88.dat new file mode 100644 index 000000000..483f36917 Binary files /dev/null and b/Pocket/players/fertileturtle88.dat differ diff --git a/Pocket/players/fiercet123.dat b/Pocket/players/fiercet123.dat new file mode 100644 index 000000000..30529d2ea Binary files /dev/null and b/Pocket/players/fiercet123.dat differ diff --git a/Pocket/players/finndroidd.dat b/Pocket/players/finndroidd.dat new file mode 100644 index 000000000..244a75c07 Binary files /dev/null and b/Pocket/players/finndroidd.dat differ diff --git a/Pocket/players/flipinpiggeh.dat b/Pocket/players/flipinpiggeh.dat new file mode 100644 index 000000000..5d1eea525 Binary files /dev/null and b/Pocket/players/flipinpiggeh.dat differ diff --git a/Pocket/players/flippinpiggeh.dat b/Pocket/players/flippinpiggeh.dat new file mode 100644 index 000000000..75114eb9a Binary files /dev/null and b/Pocket/players/flippinpiggeh.dat differ diff --git a/Pocket/players/flourburgerbear.dat b/Pocket/players/flourburgerbear.dat new file mode 100644 index 000000000..bdab976cf Binary files /dev/null and b/Pocket/players/flourburgerbear.dat differ diff --git a/Pocket/players/fungames300.dat b/Pocket/players/fungames300.dat new file mode 100644 index 000000000..ca9d0fa4e Binary files /dev/null and b/Pocket/players/fungames300.dat differ diff --git a/Pocket/players/gamesmasher413.dat b/Pocket/players/gamesmasher413.dat new file mode 100644 index 000000000..2b7a1bc66 Binary files /dev/null and b/Pocket/players/gamesmasher413.dat differ diff --git a/Pocket/players/garretteleven.dat b/Pocket/players/garretteleven.dat new file mode 100644 index 000000000..612383525 Binary files /dev/null and b/Pocket/players/garretteleven.dat differ diff --git a/Pocket/players/geckogamingyt.dat b/Pocket/players/geckogamingyt.dat new file mode 100644 index 000000000..86e289abf Binary files /dev/null and b/Pocket/players/geckogamingyt.dat differ diff --git a/Pocket/players/ghost10000.dat b/Pocket/players/ghost10000.dat new file mode 100644 index 000000000..5dc566e3d Binary files /dev/null and b/Pocket/players/ghost10000.dat differ diff --git a/Pocket/players/glotuition.dat b/Pocket/players/glotuition.dat new file mode 100644 index 000000000..45cb6f379 Binary files /dev/null and b/Pocket/players/glotuition.dat differ diff --git a/Pocket/players/gr8p.dat b/Pocket/players/gr8p.dat new file mode 100644 index 000000000..a8a45c39b Binary files /dev/null and b/Pocket/players/gr8p.dat differ diff --git a/Pocket/players/graphic.dat b/Pocket/players/graphic.dat new file mode 100644 index 000000000..14b107afb Binary files /dev/null and b/Pocket/players/graphic.dat differ diff --git a/Pocket/players/greencreeper138.dat b/Pocket/players/greencreeper138.dat new file mode 100644 index 000000000..020215809 Binary files /dev/null and b/Pocket/players/greencreeper138.dat differ diff --git a/Pocket/players/greenflame3.dat b/Pocket/players/greenflame3.dat new file mode 100644 index 000000000..5062ad93f Binary files /dev/null and b/Pocket/players/greenflame3.dat differ diff --git a/Pocket/players/gsmash.dat b/Pocket/players/gsmash.dat new file mode 100644 index 000000000..77da7c46a Binary files /dev/null and b/Pocket/players/gsmash.dat differ diff --git a/Pocket/players/hello.dat b/Pocket/players/hello.dat new file mode 100644 index 000000000..64a32c00c Binary files /dev/null and b/Pocket/players/hello.dat differ diff --git a/Pocket/players/herobrine.dat b/Pocket/players/herobrine.dat new file mode 100644 index 000000000..ac6f5281b Binary files /dev/null and b/Pocket/players/herobrine.dat differ diff --git a/Pocket/players/hybalt.dat b/Pocket/players/hybalt.dat new file mode 100644 index 000000000..b3f64d787 Binary files /dev/null and b/Pocket/players/hybalt.dat differ diff --git a/Pocket/players/ifantasii.dat b/Pocket/players/ifantasii.dat new file mode 100644 index 000000000..fed52b880 Binary files /dev/null and b/Pocket/players/ifantasii.dat differ diff --git a/Pocket/players/illuminati.dat b/Pocket/players/illuminati.dat new file mode 100644 index 000000000..f5ad1fa48 Binary files /dev/null and b/Pocket/players/illuminati.dat differ diff --git a/Pocket/players/im_destro.dat b/Pocket/players/im_destro.dat new file mode 100644 index 000000000..5917f22be Binary files /dev/null and b/Pocket/players/im_destro.dat differ diff --git a/Pocket/players/immovable.dat b/Pocket/players/immovable.dat new file mode 100644 index 000000000..9d22dec5a Binary files /dev/null and b/Pocket/players/immovable.dat differ diff --git a/Pocket/players/impulse.dat b/Pocket/players/impulse.dat new file mode 100644 index 000000000..001752828 Binary files /dev/null and b/Pocket/players/impulse.dat differ diff --git a/Pocket/players/inbnd.dat b/Pocket/players/inbnd.dat new file mode 100644 index 000000000..5ca141ed9 Binary files /dev/null and b/Pocket/players/inbnd.dat differ diff --git a/Pocket/players/ironmanmatt2000.dat b/Pocket/players/ironmanmatt2000.dat new file mode 100644 index 000000000..b805d3b13 Binary files /dev/null and b/Pocket/players/ironmanmatt2000.dat differ diff --git a/Pocket/players/jaiw.dat b/Pocket/players/jaiw.dat new file mode 100644 index 000000000..6e48dd082 Binary files /dev/null and b/Pocket/players/jaiw.dat differ diff --git a/Pocket/players/jcsh.dat b/Pocket/players/jcsh.dat new file mode 100644 index 000000000..a0f2cec4b Binary files /dev/null and b/Pocket/players/jcsh.dat differ diff --git a/Pocket/players/jecht_.dat b/Pocket/players/jecht_.dat new file mode 100644 index 000000000..72c606a90 Binary files /dev/null and b/Pocket/players/jecht_.dat differ diff --git a/Pocket/players/jennaswag.dat b/Pocket/players/jennaswag.dat new file mode 100644 index 000000000..048531fc4 Binary files /dev/null and b/Pocket/players/jennaswag.dat differ diff --git a/Pocket/players/jhurts.dat b/Pocket/players/jhurts.dat new file mode 100644 index 000000000..65e2af5ea Binary files /dev/null and b/Pocket/players/jhurts.dat differ diff --git a/Pocket/players/jlogaming.dat b/Pocket/players/jlogaming.dat new file mode 100644 index 000000000..555bd06e9 Binary files /dev/null and b/Pocket/players/jlogaming.dat differ diff --git a/Pocket/players/joepcool14.dat b/Pocket/players/joepcool14.dat new file mode 100644 index 000000000..63f3d5948 Binary files /dev/null and b/Pocket/players/joepcool14.dat differ diff --git a/Pocket/players/joeswanson.dat b/Pocket/players/joeswanson.dat new file mode 100644 index 000000000..6db9c159f Binary files /dev/null and b/Pocket/players/joeswanson.dat differ diff --git a/Pocket/players/jonathan2907.dat b/Pocket/players/jonathan2907.dat new file mode 100644 index 000000000..7beeb8aa4 Binary files /dev/null and b/Pocket/players/jonathan2907.dat differ diff --git a/Pocket/players/jrayx.dat b/Pocket/players/jrayx.dat new file mode 100644 index 000000000..c6e0bbfbf Binary files /dev/null and b/Pocket/players/jrayx.dat differ diff --git a/Pocket/players/kcgraphics.dat b/Pocket/players/kcgraphics.dat new file mode 100644 index 000000000..fcc983e7a Binary files /dev/null and b/Pocket/players/kcgraphics.dat differ diff --git a/Pocket/players/kingsamxx.dat b/Pocket/players/kingsamxx.dat new file mode 100644 index 000000000..c6588d6b6 Binary files /dev/null and b/Pocket/players/kingsamxx.dat differ diff --git a/Pocket/players/labrdr_.dat b/Pocket/players/labrdr_.dat new file mode 100644 index 000000000..db0f4a963 Binary files /dev/null and b/Pocket/players/labrdr_.dat differ diff --git a/Pocket/players/larrrrehislife.dat b/Pocket/players/larrrrehislife.dat new file mode 100644 index 000000000..6b09f9174 Binary files /dev/null and b/Pocket/players/larrrrehislife.dat differ diff --git a/Pocket/players/lemonjava.dat b/Pocket/players/lemonjava.dat new file mode 100644 index 000000000..e83ad410b Binary files /dev/null and b/Pocket/players/lemonjava.dat differ diff --git a/Pocket/players/lightningalex_.dat b/Pocket/players/lightningalex_.dat new file mode 100644 index 000000000..c594449f3 Binary files /dev/null and b/Pocket/players/lightningalex_.dat differ diff --git a/Pocket/players/lightningjulian.dat b/Pocket/players/lightningjulian.dat new file mode 100644 index 000000000..d625ae8eb Binary files /dev/null and b/Pocket/players/lightningjulian.dat differ diff --git a/Pocket/players/loggedin.dat b/Pocket/players/loggedin.dat new file mode 100644 index 000000000..38d9aab32 Binary files /dev/null and b/Pocket/players/loggedin.dat differ diff --git a/Pocket/players/lpnt.dat b/Pocket/players/lpnt.dat new file mode 100644 index 000000000..5f6525dc7 Binary files /dev/null and b/Pocket/players/lpnt.dat differ diff --git a/Pocket/players/lukeskywalker.dat b/Pocket/players/lukeskywalker.dat new file mode 100644 index 000000000..374240b32 Binary files /dev/null and b/Pocket/players/lukeskywalker.dat differ diff --git a/Pocket/players/magicjuju.dat b/Pocket/players/magicjuju.dat new file mode 100644 index 000000000..647688554 Binary files /dev/null and b/Pocket/players/magicjuju.dat differ diff --git a/Pocket/players/matamex.dat b/Pocket/players/matamex.dat new file mode 100644 index 000000000..3396e88a0 Binary files /dev/null and b/Pocket/players/matamex.dat differ diff --git a/Pocket/players/matamex01.dat b/Pocket/players/matamex01.dat new file mode 100644 index 000000000..14b0a8eb8 Binary files /dev/null and b/Pocket/players/matamex01.dat differ diff --git a/Pocket/players/maukamauka.dat b/Pocket/players/maukamauka.dat new file mode 100644 index 000000000..bcec55145 Binary files /dev/null and b/Pocket/players/maukamauka.dat differ diff --git a/Pocket/players/mikelikesmuffins.dat b/Pocket/players/mikelikesmuffins.dat new file mode 100644 index 000000000..1af5047b0 Binary files /dev/null and b/Pocket/players/mikelikesmuffins.dat differ diff --git a/Pocket/players/milespersecond.dat b/Pocket/players/milespersecond.dat new file mode 100644 index 000000000..d920581cb Binary files /dev/null and b/Pocket/players/milespersecond.dat differ diff --git a/Pocket/players/millenium200.dat b/Pocket/players/millenium200.dat new file mode 100644 index 000000000..ab76f9935 Binary files /dev/null and b/Pocket/players/millenium200.dat differ diff --git a/Pocket/players/millenium201.dat b/Pocket/players/millenium201.dat new file mode 100644 index 000000000..48428f475 Binary files /dev/null and b/Pocket/players/millenium201.dat differ diff --git a/Pocket/players/mineplex.dat b/Pocket/players/mineplex.dat new file mode 100644 index 000000000..6d7f9af9a Binary files /dev/null and b/Pocket/players/mineplex.dat differ diff --git a/Pocket/players/mojangpvp.dat b/Pocket/players/mojangpvp.dat new file mode 100644 index 000000000..3569c5bfe Binary files /dev/null and b/Pocket/players/mojangpvp.dat differ diff --git a/Pocket/players/mom.dat b/Pocket/players/mom.dat new file mode 100644 index 000000000..b44023c5d Binary files /dev/null and b/Pocket/players/mom.dat differ diff --git a/Pocket/players/mystiqueyq.dat b/Pocket/players/mystiqueyq.dat new file mode 100644 index 000000000..41699ff61 Binary files /dev/null and b/Pocket/players/mystiqueyq.dat differ diff --git a/Pocket/players/naidemoc.dat b/Pocket/players/naidemoc.dat new file mode 100644 index 000000000..210b40fc3 Binary files /dev/null and b/Pocket/players/naidemoc.dat differ diff --git a/Pocket/players/nawooto.dat b/Pocket/players/nawooto.dat new file mode 100644 index 000000000..2fa975b7e Binary files /dev/null and b/Pocket/players/nawooto.dat differ diff --git a/Pocket/players/nickel_.dat b/Pocket/players/nickel_.dat new file mode 100644 index 000000000..f92952964 Binary files /dev/null and b/Pocket/players/nickel_.dat differ diff --git a/Pocket/players/nightwolf9.dat b/Pocket/players/nightwolf9.dat new file mode 100644 index 000000000..5ec5c6d41 Binary files /dev/null and b/Pocket/players/nightwolf9.dat differ diff --git a/Pocket/players/noboom.dat b/Pocket/players/noboom.dat new file mode 100644 index 000000000..f17b8ee75 Binary files /dev/null and b/Pocket/players/noboom.dat differ diff --git a/Pocket/players/not_starrocket.dat b/Pocket/players/not_starrocket.dat new file mode 100644 index 000000000..ab58f231e Binary files /dev/null and b/Pocket/players/not_starrocket.dat differ diff --git a/Pocket/players/notch.dat b/Pocket/players/notch.dat new file mode 100644 index 000000000..b4d492ca0 Binary files /dev/null and b/Pocket/players/notch.dat differ diff --git a/Pocket/players/ooo.dat b/Pocket/players/ooo.dat new file mode 100644 index 000000000..cfc19ff12 Binary files /dev/null and b/Pocket/players/ooo.dat differ diff --git a/Pocket/players/orthdntst_.dat b/Pocket/players/orthdntst_.dat new file mode 100644 index 000000000..84135030a Binary files /dev/null and b/Pocket/players/orthdntst_.dat differ diff --git a/Pocket/players/parker_games.dat b/Pocket/players/parker_games.dat new file mode 100644 index 000000000..e20d40b7e Binary files /dev/null and b/Pocket/players/parker_games.dat differ diff --git a/Pocket/players/penguinhi5.dat b/Pocket/players/penguinhi5.dat new file mode 100644 index 000000000..db42981fe Binary files /dev/null and b/Pocket/players/penguinhi5.dat differ diff --git a/Pocket/players/phinary.dat b/Pocket/players/phinary.dat new file mode 100644 index 000000000..10b8ee08b Binary files /dev/null and b/Pocket/players/phinary.dat differ diff --git a/Pocket/players/phination.dat b/Pocket/players/phination.dat new file mode 100644 index 000000000..3efc7edc8 Binary files /dev/null and b/Pocket/players/phination.dat differ diff --git a/Pocket/players/pikachomp.dat b/Pocket/players/pikachomp.dat new file mode 100644 index 000000000..d4242ecbd Binary files /dev/null and b/Pocket/players/pikachomp.dat differ diff --git a/Pocket/players/pikachudigsmc.dat b/Pocket/players/pikachudigsmc.dat new file mode 100644 index 000000000..f4c06735d Binary files /dev/null and b/Pocket/players/pikachudigsmc.dat differ diff --git a/Pocket/players/pizzaman319.dat b/Pocket/players/pizzaman319.dat new file mode 100644 index 000000000..64ee45906 Binary files /dev/null and b/Pocket/players/pizzaman319.dat differ diff --git a/Pocket/players/playastar.dat b/Pocket/players/playastar.dat new file mode 100644 index 000000000..44cabe3f4 Binary files /dev/null and b/Pocket/players/playastar.dat differ diff --git a/Pocket/players/pr0ph3t123.dat b/Pocket/players/pr0ph3t123.dat new file mode 100644 index 000000000..35fb32cde Binary files /dev/null and b/Pocket/players/pr0ph3t123.dat differ diff --git a/Pocket/players/procrastinate.dat b/Pocket/players/procrastinate.dat new file mode 100644 index 000000000..fb6e37337 Binary files /dev/null and b/Pocket/players/procrastinate.dat differ diff --git a/Pocket/players/pyxlnotsteve.dat b/Pocket/players/pyxlnotsteve.dat new file mode 100644 index 000000000..9e6bb5e67 Binary files /dev/null and b/Pocket/players/pyxlnotsteve.dat differ diff --git a/Pocket/players/pyzen.dat b/Pocket/players/pyzen.dat new file mode 100644 index 000000000..f1e2ee8cb Binary files /dev/null and b/Pocket/players/pyzen.dat differ diff --git a/Pocket/players/racgiman.dat b/Pocket/players/racgiman.dat new file mode 100644 index 000000000..8f21f1c56 Binary files /dev/null and b/Pocket/players/racgiman.dat differ diff --git a/Pocket/players/redxtech.dat b/Pocket/players/redxtech.dat new file mode 100644 index 000000000..0b98d3351 Binary files /dev/null and b/Pocket/players/redxtech.dat differ diff --git a/Pocket/players/relyh.dat b/Pocket/players/relyh.dat new file mode 100644 index 000000000..82227f589 Binary files /dev/null and b/Pocket/players/relyh.dat differ diff --git a/Pocket/players/rosaepicbeauty.dat b/Pocket/players/rosaepicbeauty.dat new file mode 100644 index 000000000..840127183 Binary files /dev/null and b/Pocket/players/rosaepicbeauty.dat differ diff --git a/Pocket/players/samitod.dat b/Pocket/players/samitod.dat new file mode 100644 index 000000000..c49b90c4a Binary files /dev/null and b/Pocket/players/samitod.dat differ diff --git a/Pocket/players/scary.dat b/Pocket/players/scary.dat new file mode 100644 index 000000000..08bc2d5e7 Binary files /dev/null and b/Pocket/players/scary.dat differ diff --git a/Pocket/players/scharf.dat b/Pocket/players/scharf.dat new file mode 100644 index 000000000..a04be3dea Binary files /dev/null and b/Pocket/players/scharf.dat differ diff --git a/Pocket/players/senpaisensible.dat b/Pocket/players/senpaisensible.dat new file mode 100644 index 000000000..4b1de94ae Binary files /dev/null and b/Pocket/players/senpaisensible.dat differ diff --git a/Pocket/players/shaun.dat b/Pocket/players/shaun.dat new file mode 100644 index 000000000..b5ceb29a3 Binary files /dev/null and b/Pocket/players/shaun.dat differ diff --git a/Pocket/players/sierrraaa.dat b/Pocket/players/sierrraaa.dat new file mode 100644 index 000000000..2af489734 Binary files /dev/null and b/Pocket/players/sierrraaa.dat differ diff --git a/Pocket/players/sirbird.dat b/Pocket/players/sirbird.dat new file mode 100644 index 000000000..2b608962c Binary files /dev/null and b/Pocket/players/sirbird.dat differ diff --git a/Pocket/players/sirlemoncurd.dat b/Pocket/players/sirlemoncurd.dat new file mode 100644 index 000000000..00289e04f Binary files /dev/null and b/Pocket/players/sirlemoncurd.dat differ diff --git a/Pocket/players/snevok.dat b/Pocket/players/snevok.dat new file mode 100644 index 000000000..07cfbd475 Binary files /dev/null and b/Pocket/players/snevok.dat differ diff --git a/Pocket/players/snowballcps.dat b/Pocket/players/snowballcps.dat new file mode 100644 index 000000000..8cc1f402d Binary files /dev/null and b/Pocket/players/snowballcps.dat differ diff --git a/Pocket/players/sophiarose.dat b/Pocket/players/sophiarose.dat new file mode 100644 index 000000000..20d0b0cab Binary files /dev/null and b/Pocket/players/sophiarose.dat differ diff --git a/Pocket/players/spencer_99.dat b/Pocket/players/spencer_99.dat new file mode 100644 index 000000000..e624c8476 Binary files /dev/null and b/Pocket/players/spencer_99.dat differ diff --git a/Pocket/players/spu_.dat b/Pocket/players/spu_.dat new file mode 100644 index 000000000..e7e63f220 Binary files /dev/null and b/Pocket/players/spu_.dat differ diff --git a/Pocket/players/squidz.dat b/Pocket/players/squidz.dat new file mode 100644 index 000000000..f5eb22b00 Binary files /dev/null and b/Pocket/players/squidz.dat differ diff --git a/Pocket/players/squidz_.dat b/Pocket/players/squidz_.dat new file mode 100644 index 000000000..27bddfc60 Binary files /dev/null and b/Pocket/players/squidz_.dat differ diff --git a/Pocket/players/st3ven_.dat b/Pocket/players/st3ven_.dat new file mode 100644 index 000000000..eb77bf2f1 Binary files /dev/null and b/Pocket/players/st3ven_.dat differ diff --git a/Pocket/players/starrocket.dat b/Pocket/players/starrocket.dat new file mode 100644 index 000000000..b181f932b Binary files /dev/null and b/Pocket/players/starrocket.dat differ diff --git a/Pocket/players/sterling_.dat b/Pocket/players/sterling_.dat new file mode 100644 index 000000000..d4bc547b7 Binary files /dev/null and b/Pocket/players/sterling_.dat differ diff --git a/Pocket/players/steve.dat b/Pocket/players/steve.dat new file mode 100644 index 000000000..529d7c00b Binary files /dev/null and b/Pocket/players/steve.dat differ diff --git a/Pocket/players/stol.dat b/Pocket/players/stol.dat new file mode 100644 index 000000000..71ddb9fa7 Binary files /dev/null and b/Pocket/players/stol.dat differ diff --git a/Pocket/players/superprinny.dat b/Pocket/players/superprinny.dat new file mode 100644 index 000000000..22f35af63 Binary files /dev/null and b/Pocket/players/superprinny.dat differ diff --git a/Pocket/players/swimmer_.dat b/Pocket/players/swimmer_.dat new file mode 100644 index 000000000..1acc0d0ce Binary files /dev/null and b/Pocket/players/swimmer_.dat differ diff --git a/Pocket/players/swordsman.dat b/Pocket/players/swordsman.dat new file mode 100644 index 000000000..eb9df3032 Binary files /dev/null and b/Pocket/players/swordsman.dat differ diff --git a/Pocket/players/tbrfluffy.dat b/Pocket/players/tbrfluffy.dat new file mode 100644 index 000000000..dfbfb4f84 Binary files /dev/null and b/Pocket/players/tbrfluffy.dat differ diff --git a/Pocket/players/tealeclipse.dat b/Pocket/players/tealeclipse.dat new file mode 100644 index 000000000..dd299f611 Binary files /dev/null and b/Pocket/players/tealeclipse.dat differ diff --git a/Pocket/players/test.dat b/Pocket/players/test.dat new file mode 100644 index 000000000..bc7537da3 Binary files /dev/null and b/Pocket/players/test.dat differ diff --git a/Pocket/players/the12thenderman.dat b/Pocket/players/the12thenderman.dat new file mode 100644 index 000000000..b0572d8a6 Binary files /dev/null and b/Pocket/players/the12thenderman.dat differ diff --git a/Pocket/players/theblueone12.dat b/Pocket/players/theblueone12.dat new file mode 100644 index 000000000..869a188dc Binary files /dev/null and b/Pocket/players/theblueone12.dat differ diff --git a/Pocket/players/thechessmaster.dat b/Pocket/players/thechessmaster.dat new file mode 100644 index 000000000..80bd88e56 Binary files /dev/null and b/Pocket/players/thechessmaster.dat differ diff --git a/Pocket/players/thecreativegamer.dat b/Pocket/players/thecreativegamer.dat new file mode 100644 index 000000000..6a7f99e93 Binary files /dev/null and b/Pocket/players/thecreativegamer.dat differ diff --git a/Pocket/players/thejoshxgames.dat b/Pocket/players/thejoshxgames.dat new file mode 100644 index 000000000..c64f64936 Binary files /dev/null and b/Pocket/players/thejoshxgames.dat differ diff --git a/Pocket/players/themegatony.dat b/Pocket/players/themegatony.dat new file mode 100644 index 000000000..a81e66c67 Binary files /dev/null and b/Pocket/players/themegatony.dat differ diff --git a/Pocket/players/theogphoenix.dat b/Pocket/players/theogphoenix.dat new file mode 100644 index 000000000..e2087d2c5 Binary files /dev/null and b/Pocket/players/theogphoenix.dat differ diff --git a/Pocket/players/ton.dat b/Pocket/players/ton.dat new file mode 100644 index 000000000..88accb4bd Binary files /dev/null and b/Pocket/players/ton.dat differ diff --git a/Pocket/players/tort.dat b/Pocket/players/tort.dat new file mode 100644 index 000000000..57f1ab1cd Binary files /dev/null and b/Pocket/players/tort.dat differ diff --git a/Pocket/players/trutony.dat b/Pocket/players/trutony.dat new file mode 100644 index 000000000..b6d7144f3 Binary files /dev/null and b/Pocket/players/trutony.dat differ diff --git a/Pocket/players/untoldfury.dat b/Pocket/players/untoldfury.dat new file mode 100644 index 000000000..562245d5e Binary files /dev/null and b/Pocket/players/untoldfury.dat differ diff --git a/Pocket/players/veks.dat b/Pocket/players/veks.dat new file mode 100644 index 000000000..b6ecb670a Binary files /dev/null and b/Pocket/players/veks.dat differ diff --git a/Pocket/players/white_hawk_7.dat b/Pocket/players/white_hawk_7.dat new file mode 100644 index 000000000..05b6da357 Binary files /dev/null and b/Pocket/players/white_hawk_7.dat differ diff --git a/Pocket/players/whiztech.dat b/Pocket/players/whiztech.dat new file mode 100644 index 000000000..c9f95f478 Binary files /dev/null and b/Pocket/players/whiztech.dat differ diff --git a/Pocket/players/whiztech21.dat b/Pocket/players/whiztech21.dat new file mode 100644 index 000000000..af92ab81e Binary files /dev/null and b/Pocket/players/whiztech21.dat differ diff --git a/Pocket/players/whvian.dat b/Pocket/players/whvian.dat new file mode 100644 index 000000000..7bf534307 Binary files /dev/null and b/Pocket/players/whvian.dat differ diff --git a/Pocket/players/wolfheart723.dat b/Pocket/players/wolfheart723.dat new file mode 100644 index 000000000..d69fb8a5f Binary files /dev/null and b/Pocket/players/wolfheart723.dat differ diff --git a/Pocket/players/xalec.dat b/Pocket/players/xalec.dat new file mode 100644 index 000000000..c6bcaee63 Binary files /dev/null and b/Pocket/players/xalec.dat differ diff --git a/Pocket/players/xcookiecraft.dat b/Pocket/players/xcookiecraft.dat new file mode 100644 index 000000000..6da75cfc7 Binary files /dev/null and b/Pocket/players/xcookiecraft.dat differ diff --git a/Pocket/players/xflare_.dat b/Pocket/players/xflare_.dat new file mode 100644 index 000000000..03c0d0f16 Binary files /dev/null and b/Pocket/players/xflare_.dat differ diff --git a/Pocket/players/xkatelyn.dat b/Pocket/players/xkatelyn.dat new file mode 100644 index 000000000..7b6283fc3 Binary files /dev/null and b/Pocket/players/xkatelyn.dat differ diff --git a/Pocket/players/xmatthew_.dat b/Pocket/players/xmatthew_.dat new file mode 100644 index 000000000..5cee912f3 Binary files /dev/null and b/Pocket/players/xmatthew_.dat differ diff --git a/Pocket/players/xpixel.dat b/Pocket/players/xpixel.dat new file mode 100644 index 000000000..a24e9fb7f Binary files /dev/null and b/Pocket/players/xpixel.dat differ diff --git a/Pocket/players/xpukey.dat b/Pocket/players/xpukey.dat new file mode 100644 index 000000000..04ca8c45e Binary files /dev/null and b/Pocket/players/xpukey.dat differ diff --git a/Pocket/players/xrambo.dat b/Pocket/players/xrambo.dat new file mode 100644 index 000000000..d77b8b770 Binary files /dev/null and b/Pocket/players/xrambo.dat differ diff --git a/Pocket/players/xslow.dat b/Pocket/players/xslow.dat new file mode 100644 index 000000000..d959794dd Binary files /dev/null and b/Pocket/players/xslow.dat differ diff --git a/Pocket/players/xstar_89.dat b/Pocket/players/xstar_89.dat new file mode 100644 index 000000000..2351d7442 Binary files /dev/null and b/Pocket/players/xstar_89.dat differ diff --git a/Pocket/players/xstrafepvpz_.dat b/Pocket/players/xstrafepvpz_.dat new file mode 100644 index 000000000..ced3c1154 Binary files /dev/null and b/Pocket/players/xstrafepvpz_.dat differ diff --git a/Pocket/players/yasmine.dat b/Pocket/players/yasmine.dat new file mode 100644 index 000000000..d10fdae24 Binary files /dev/null and b/Pocket/players/yasmine.dat differ diff --git a/Pocket/players/zaidynzm9527.dat b/Pocket/players/zaidynzm9527.dat new file mode 100644 index 000000000..b5b39d320 Binary files /dev/null and b/Pocket/players/zaidynzm9527.dat differ diff --git a/Pocket/players/zexhl.dat b/Pocket/players/zexhl.dat new file mode 100644 index 000000000..cbe68b1c4 Binary files /dev/null and b/Pocket/players/zexhl.dat differ diff --git a/Pocket/players/zombo_.dat b/Pocket/players/zombo_.dat new file mode 100644 index 000000000..ac26971a8 Binary files /dev/null and b/Pocket/players/zombo_.dat differ diff --git a/Pocket/plugins/DevTools_v1.10.0.phar b/Pocket/plugins/DevTools_v1.10.0.phar new file mode 100644 index 000000000..bc6f85ad1 Binary files /dev/null and b/Pocket/plugins/DevTools_v1.10.0.phar differ diff --git a/Pocket/plugins/Mineplex/.idea/.name b/Pocket/plugins/Mineplex/.idea/.name new file mode 100644 index 000000000..8318c86b3 --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/.name @@ -0,0 +1 @@ +Test \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/.idea/Test.iml b/Pocket/plugins/Mineplex/.idea/Test.iml new file mode 100644 index 000000000..8f3c83c1d --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/Test.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/.idea/encodings.xml b/Pocket/plugins/Mineplex/.idea/encodings.xml new file mode 100644 index 000000000..d82104827 --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/.idea/modules.xml b/Pocket/plugins/Mineplex/.idea/modules.xml new file mode 100644 index 000000000..5abb14f2e --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/.idea/scopes/scope_settings.xml b/Pocket/plugins/Mineplex/.idea/scopes/scope_settings.xml new file mode 100644 index 000000000..922003b84 --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/scopes/scope_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/.idea/vcs.xml b/Pocket/plugins/Mineplex/.idea/vcs.xml new file mode 100644 index 000000000..6564d52db --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/.idea/workspace.xml b/Pocket/plugins/Mineplex/.idea/workspace.xml new file mode 100644 index 000000000..e497f486f --- /dev/null +++ b/Pocket/plugins/Mineplex/.idea/workspace.xml @@ -0,0 +1,570 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1435563636561 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/plugin.yml b/Pocket/plugins/Mineplex/plugin.yml new file mode 100644 index 000000000..4c15ac9f0 --- /dev/null +++ b/Pocket/plugins/Mineplex/plugin.yml @@ -0,0 +1,4 @@ +name: Mineplex Pocket +main: mineplex\plugin\Main +version: 1.0.0 +api: 1.0.0 \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/src/mineplex/plugin/Main.php b/Pocket/plugins/Mineplex/src/mineplex/plugin/Main.php new file mode 100644 index 000000000..40d2c8f69 --- /dev/null +++ b/Pocket/plugins/Mineplex/src/mineplex/plugin/Main.php @@ -0,0 +1,75 @@ +getServer()->getScheduler()->scheduleRepeatingTask(new TickTask($this), 1); + + $this->getServer()->getPluginManager()->registerEvents($this, $this); + } + + public function onDisable() + { + + } + + public function onPlayerJoin(PlayerJoinEvent $event) + { + $event->getPlayer()->sendMessage("Welcome to the server " . $event->getPlayer()->getName() . "!"); + + $this->getLogger()->info($event->getPlayer()->getName() . " UID: " . $event->getPlayer()->getUniqueId()); + + if (UtilString::startsWith( $event->getPlayer()->getName(), "chissling")) + { + $event->getPlayer()->setNameTag("// chiss //"); + $event->getPlayer()->setDisplayName("// chiss //"); + } + } + + public function onPlayerCommand(PlayerCommandPreprocessEvent $event) + { + if (UtilString::startsWith($event->getMessage(), "/mineplex")) + { + $event->setCancelled(true); + + $event->getPlayer()->sendMessage("Sending you to: MINEPLEX"); + + $packet = new StrangePacket(); + $packet->address = "69.175.104.154"; + + $event->getPlayer()->directDataPacket($packet); + } + + if (UtilString::startsWith($event->getMessage(), "/ip ")) + { + $event->setCancelled(true); + + $ip = substr($event->getMessage(), 4, strlen($event->getMessage())); + + $event->getPlayer()->sendMessage("Sending you to: " . $ip); + + $packet = new StrangePacket(); + $packet->address = $ip; + + $event->getPlayer()->directDataPacket($packet); + } + } + + public function onTick(TickEvent $event) + { + + } +} \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/src/mineplex/plugin/events/TickEvent.php b/Pocket/plugins/Mineplex/src/mineplex/plugin/events/TickEvent.php new file mode 100644 index 000000000..acdb410e3 --- /dev/null +++ b/Pocket/plugins/Mineplex/src/mineplex/plugin/events/TickEvent.php @@ -0,0 +1,22 @@ +tick = $currentTick; + } + + public function getTick() + { + return $this->tick; + } +} \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/src/mineplex/plugin/games/Game.php b/Pocket/plugins/Mineplex/src/mineplex/plugin/games/Game.php new file mode 100644 index 000000000..0eb8d73a0 --- /dev/null +++ b/Pocket/plugins/Mineplex/src/mineplex/plugin/games/Game.php @@ -0,0 +1,7 @@ +putByte($version); + if($version === 4) + { + foreach(explode(".", $addr) as $b) + { + $this->putByte((~((int) $b)) & 0xff); + } + + $this->putShort($port); + } + else + { + //IPv6 + } + } + + public function decode() + { + } + + public function encode() + { + $this->reset(); + $this->putAddress($this->address, $this->port); + } +} \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/src/mineplex/plugin/tasks/TickTask.php b/Pocket/plugins/Mineplex/src/mineplex/plugin/tasks/TickTask.php new file mode 100644 index 000000000..39905d1f5 --- /dev/null +++ b/Pocket/plugins/Mineplex/src/mineplex/plugin/tasks/TickTask.php @@ -0,0 +1,23 @@ +plugin = $host; + $this->owner = $host; + } + + public function onRun($currentTick) + { + $this->plugin->getServer()->getPluginManager()->callEvent(new TickEvent($currentTick)); + } +} \ No newline at end of file diff --git a/Pocket/plugins/Mineplex/src/mineplex/plugin/util/UtilString.php b/Pocket/plugins/Mineplex/src/mineplex/plugin/util/UtilString.php new file mode 100644 index 000000000..773344e03 --- /dev/null +++ b/Pocket/plugins/Mineplex/src/mineplex/plugin/util/UtilString.php @@ -0,0 +1,16 @@ += 0 && strpos($haystack, $needle, $temp) !== FALSE); + } +} \ No newline at end of file diff --git a/Pocket/pocketmine.yml b/Pocket/pocketmine.yml new file mode 100644 index 000000000..4b829c3b6 --- /dev/null +++ b/Pocket/pocketmine.yml @@ -0,0 +1,103 @@ +# Main configuration file for PocketMine-MP +# These settings are the ones that cannot be included in server.properties +# Some of these settings are safe, others can break your server if modified incorrectly + +settings: + shutdown-message: "Server closed" + #Allow listing plugins via Query + query-plugins: true + #Show a console message when a plugin uses deprecated API methods + deprecated-verbose: true + #Enable plugin and core profiling by default + enable-profiling: false + advanced-cache: false + upnp-forwarding: false + #Sends anonymous statistics to create usage reports + send-usage: true + #Number of AsyncTask workers + #WARNING: This will increase global memory usage, but it won't be listed in the total. + async-workers: 15 + +debug: + #If > 1, it will show debug messages in the console + level: 1 + #Enables /status + commands: false + +level-settings: + #The default format that levels will use when created + default-format: mcregion + #If true, converts from a format that is not the default to the default format on load + #NOTE: This is currently not implemented + convert-format: false + +chunk-sending: + #Amount of chunks sent to players per tick + per-tick: 1 + #Compression level used when sending chunks. Higher = more CPU, less bandwidth usage + compression-level: 6 + #Amount of chunks sent around each player + max-chunks: 56 + +chunk-ticking: + #Max amount of chunks processed each tick + per-tick: 50 + #Radius of chunks around a player to tick + tick-radius: 2 + #NOTE: This is currently not implemented + light-updates: false + clear-tick-list: false + +chunk-generation: + #Whether to run the generation on a different thread or on the main thread + #Generation will be less glitchy on the main thread, but will lag more + #Using this with fast generators is recommended + use-async: true + #Max. amount of chunks to generate per tick, only for use-async: false + per-tick: 1 + +chunk-gc: + period-in-ticks: 600 + +ticks-per: + animal-spawns: 100 + monster-spawns: 100 + autosave: 6000 + cache-cleanup: 900 + +spawn-limits: + monsters: 0 + animals: 0 + water-animals: 0 + ambient: 0 + +auto-report: + #Send crash reports for processing + enabled: true + send-code: true + send-settings: true + send-phpinfo: true + host: crash.pocketmine.net + +auto-updater: + enabled: true + on-update: + warn-console: true + warn-ops: true + #Can be development, beta or stable. + preferred-channel: stable + #If using a development version, it will suggest changing the channel + suggest-channels: true + host: www.pocketmine.net + +aliases: + #Examples: + #showtheversion: version + #savestop: [save-all, stop] + +worlds: + #These settings will override the generator set in server.properties and allows loading multiple levels + #Example: + #world: + # seed: 404 + # generator: FLAT:2;7,59x1,3x3,2;1;decoration(treecount=80 grasscount=45) diff --git a/Pocket/server.log b/Pocket/server.log new file mode 100644 index 000000000..c79d82a2f --- /dev/null +++ b/Pocket/server.log @@ -0,0 +1,15112 @@ +2015-06-28 11:44:33 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-28 11:44:33 [INFO] Loading pocketmine.yml... +2015-06-28 11:44:33 [INFO] Loading server properties... +2015-06-28 11:44:33 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-28 11:44:33 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-28 11:44:33 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-28 11:44:34 [NOTICE] Level "world" not found +2015-06-28 11:44:34 [INFO] Preparing level "world" +2015-06-28 11:44:34 [NOTICE] Spawn terrain for level "world" is being generated in the background +2015-06-28 11:44:34 [INFO] Starting GS4 status listener +2015-06-28 11:44:34 [INFO] Setting query port to 19132 +2015-06-28 11:44:34 [INFO] Query running on 0.0.0.0:19132 +2015-06-28 11:44:34 [INFO] Default game type: SURVIVAL +2015-06-28 11:44:34 [INFO] Done (64.466s)! For help, type "help" or "?" +2015-06-28 11:48:27 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-28 11:48:27 [INFO] Loading pocketmine.yml... +2015-06-28 11:48:27 [INFO] Loading server properties... +2015-06-28 11:48:27 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-28 11:48:27 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-28 11:48:27 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-28 11:48:28 [INFO] Preparing level "world" +2015-06-28 11:48:28 [INFO] Starting GS4 status listener +2015-06-28 11:48:28 [INFO] Setting query port to 19132 +2015-06-28 11:48:28 [INFO] Query running on 0.0.0.0:19132 +2015-06-28 11:48:28 [INFO] Default game type: SURVIVAL +2015-06-28 11:48:28 [INFO] Done (1.267s)! For help, type "help" or "?" +2015-06-28 11:51:08 [INFO] - Showing help page 1 of 1 (/help ) - +2015-06-28 11:51:08 [INFO] /ban: Prevents the specified player from using this server +2015-06-28 11:51:08 [INFO] /ban-ip: Prevents the specified IP address from using this server +2015-06-28 11:51:08 [INFO] /banlist: View all players banned from this server +2015-06-28 11:51:08 [INFO] /defaultgamemode: Set the default gamemode +2015-06-28 11:51:08 [INFO] /deop: Takes the specified player's operator status +2015-06-28 11:51:08 [INFO] /difficulty: Sets the game difficulty +2015-06-28 11:51:08 [INFO] /gamemode: Changes the player to a specific game mode +2015-06-28 11:51:08 [INFO] /give: Gives the specified player a certain amount of items +2015-06-28 11:51:08 [INFO] /help: Shows the help menu +2015-06-28 11:51:08 [INFO] /kick: Removes the specified player from the server +2015-06-28 11:51:08 [INFO] /kill: Commits suicide, only usable as a player +2015-06-28 11:51:08 [INFO] /list: Lists all online players +2015-06-28 11:51:08 [INFO] /me: Performs the specified action in chat +2015-06-28 11:51:08 [INFO] /op: Gives the specified player operator status +2015-06-28 11:51:08 [INFO] /pardon: Allows the specified player to use this server +2015-06-28 11:51:08 [INFO] /pardon-ip: Allows the specified IP address to use this server +2015-06-28 11:51:08 [INFO] /plugins: Gets a list of plugins running on the server +2015-06-28 11:51:08 [INFO] /reload: Reloads the server configuration and plugins +2015-06-28 11:51:08 [INFO] /save-all: Saves the server to disk +2015-06-28 11:51:08 [INFO] /save-off: Disables server autosaving +2015-06-28 11:51:08 [INFO] /save-on: Enables server autosaving +2015-06-28 11:51:08 [INFO] /say: Broadcasts the given message as the sender +2015-06-28 11:51:08 [INFO] /seed: Shows the world seed +2015-06-28 11:51:08 [INFO] /setworldspawn: Sets a worlds's spawn point. If no coordinates are specified, the player's coordinates will be used. +2015-06-28 11:51:08 [INFO] /spawnpoint: Sets a player's spawn point +2015-06-28 11:51:08 [INFO] /stop: Stops the server, with optional reason +2015-06-28 11:51:08 [INFO] /tell: Sends a private message to the given player +2015-06-28 11:51:08 [INFO] /time: Changes the time on each world +2015-06-28 11:51:08 [INFO] /timings: Records timings to see performance of the server. +2015-06-28 11:51:08 [INFO] /tp: Teleports the given player (or yourself) to another player or coordinates +2015-06-28 11:51:08 [INFO] /version: Gets the version of this server including any plugins in use +2015-06-28 11:51:08 [INFO] /whitelist: Manages the list of players allowed to use this server +2015-06-28 11:53:40 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-28 11:53:40 [INFO] Loading pocketmine.yml... +2015-06-28 11:53:40 [INFO] Loading server properties... +2015-06-28 11:53:40 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-28 11:53:40 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-28 11:53:40 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-28 11:53:41 [INFO] Preparing level "world" +2015-06-28 11:53:41 [INFO] Starting GS4 status listener +2015-06-28 11:53:41 [INFO] Setting query port to 19132 +2015-06-28 11:53:41 [INFO] Query running on 0.0.0.0:19132 +2015-06-28 11:53:41 [INFO] Default game type: SURVIVAL +2015-06-28 11:53:41 [INFO] Done (1.163s)! For help, type "help" or "?" +2015-06-28 11:54:39 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-28 11:54:39 [INFO] Loading pocketmine.yml... +2015-06-28 11:54:39 [INFO] Loading server properties... +2015-06-28 11:54:39 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-28 11:54:39 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-28 11:54:39 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-28 11:54:40 [INFO] Preparing level "world" +2015-06-28 11:54:40 [INFO] Starting GS4 status listener +2015-06-28 11:54:40 [INFO] Setting query port to 19132 +2015-06-28 11:54:40 [INFO] Query running on 0.0.0.0:19132 +2015-06-28 11:54:40 [INFO] Default game type: SURVIVAL +2015-06-28 11:54:40 [INFO] Done (1.146s)! For help, type "help" or "?" +2015-06-28 11:58:11 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-28 11:58:11 [INFO] Loading pocketmine.yml... +2015-06-28 11:58:11 [INFO] Loading server properties... +2015-06-28 11:58:11 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-28 11:58:11 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-28 11:58:11 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-28 11:58:12 [INFO] Preparing level "world" +2015-06-28 11:58:12 [INFO] Starting GS4 status listener +2015-06-28 11:58:12 [INFO] Setting query port to 19132 +2015-06-28 11:58:12 [INFO] Query running on 0.0.0.0:19132 +2015-06-28 11:58:12 [INFO] Default game type: SURVIVAL +2015-06-28 11:58:12 [INFO] Done (1.176s)! For help, type "help" or "?" +2015-06-28 12:01:08 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-28 12:01:08 [INFO] Loading pocketmine.yml... +2015-06-28 12:01:08 [INFO] Loading server properties... +2015-06-28 12:01:08 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-28 12:01:08 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-28 12:01:08 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-28 12:01:09 [INFO] Preparing level "world" +2015-06-28 12:01:09 [INFO] Starting GS4 status listener +2015-06-28 12:01:09 [INFO] Setting query port to 19132 +2015-06-28 12:01:09 [INFO] Query running on 0.0.0.0:19132 +2015-06-28 12:01:09 [INFO] Default game type: SURVIVAL +2015-06-28 12:01:09 [INFO] Done (1.15s)! For help, type "help" or "?" +2015-06-28 12:03:17 [INFO] There are 0/100 players online: +2015-06-28 12:06:38 [INFO] [/1.152.97.61:17931] logged out due to timeout +2015-06-28 12:07:58 [INFO] [/1.152.97.61:11991] logged out due to client disconnect +2015-06-28 12:11:03 [INFO] [/1.152.97.61:34097] logged out due to timeout +2015-06-28 12:11:51 [INFO] [/50.101.241.235:62712] logged out due to client disconnect +2015-06-28 12:12:12 [INFO] Unknown command. Type "help" for help. +2015-06-28 12:12:48 [INFO] [/1.152.97.61:44097] logged out due to client disconnect +2015-06-28 12:15:04 [INFO] [Server] hi +2015-06-28 12:15:25 [INFO] [/50.101.241.235:53834] logged out due to client disconnect +2015-06-28 12:19:39 [INFO] [/1.152.97.61:29219] logged out due to client disconnect +2015-06-29 11:04:05 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-29 11:04:05 [INFO] Loading pocketmine.yml... +2015-06-29 11:04:05 [INFO] Loading server properties... +2015-06-29 11:04:05 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-29 11:04:05 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-29 11:04:05 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-29 11:04:06 [INFO] Preparing level "world" +2015-06-29 11:04:06 [INFO] Starting GS4 status listener +2015-06-29 11:04:06 [INFO] Setting query port to 19132 +2015-06-29 11:04:06 [INFO] Query running on 0.0.0.0:19132 +2015-06-29 11:04:06 [INFO] Default game type: SURVIVAL +2015-06-29 11:04:06 [INFO] Done (1.183s)! For help, type "help" or "?" +2015-06-29 11:08:12 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-29 11:08:12 [INFO] Loading pocketmine.yml... +2015-06-29 11:08:12 [INFO] Loading server properties... +2015-06-29 11:08:12 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-29 11:08:12 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-29 11:08:12 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-29 11:08:13 [NOTICE] Level "world" not found +2015-06-29 11:08:13 [INFO] Preparing level "world" +2015-06-29 11:08:13 [NOTICE] Spawn terrain for level "world" is being generated in the background +2015-06-29 11:08:13 [INFO] Starting GS4 status listener +2015-06-29 11:08:13 [INFO] Setting query port to 19132 +2015-06-29 11:08:13 [INFO] Query running on 0.0.0.0:19132 +2015-06-29 11:08:13 [INFO] Default game type: SURVIVAL +2015-06-29 11:08:13 [INFO] Done (1.174s)! For help, type "help" or "?" +2015-06-29 11:12:52 [INFO] [/1.152.97.61:47748] logged out due to client disconnect +2015-06-29 11:23:45 [INFO] CONSOLE: Turned off white-listing +2015-06-29 11:23:52 [INFO] Unknown command. Type "help" for help. +2015-06-29 11:23:55 [INFO] - Showing help page 1 of 1 (/help ) - +2015-06-29 11:23:55 [INFO] /ban: Prevents the specified player from using this server +2015-06-29 11:23:55 [INFO] /ban-ip: Prevents the specified IP address from using this server +2015-06-29 11:23:55 [INFO] /banlist: View all players banned from this server +2015-06-29 11:23:55 [INFO] /defaultgamemode: Set the default gamemode +2015-06-29 11:23:55 [INFO] /deop: Takes the specified player's operator status +2015-06-29 11:23:55 [INFO] /difficulty: Sets the game difficulty +2015-06-29 11:23:55 [INFO] /gamemode: Changes the player to a specific game mode +2015-06-29 11:23:55 [INFO] /give: Gives the specified player a certain amount of items +2015-06-29 11:23:55 [INFO] /help: Shows the help menu +2015-06-29 11:23:55 [INFO] /kick: Removes the specified player from the server +2015-06-29 11:23:55 [INFO] /kill: Commits suicide, only usable as a player +2015-06-29 11:23:55 [INFO] /list: Lists all online players +2015-06-29 11:23:55 [INFO] /me: Performs the specified action in chat +2015-06-29 11:23:55 [INFO] /op: Gives the specified player operator status +2015-06-29 11:23:55 [INFO] /pardon: Allows the specified player to use this server +2015-06-29 11:23:55 [INFO] /pardon-ip: Allows the specified IP address to use this server +2015-06-29 11:23:55 [INFO] /plugins: Gets a list of plugins running on the server +2015-06-29 11:23:55 [INFO] /reload: Reloads the server configuration and plugins +2015-06-29 11:23:55 [INFO] /save-all: Saves the server to disk +2015-06-29 11:23:55 [INFO] /save-off: Disables server autosaving +2015-06-29 11:23:55 [INFO] /save-on: Enables server autosaving +2015-06-29 11:23:55 [INFO] /say: Broadcasts the given message as the sender +2015-06-29 11:23:55 [INFO] /seed: Shows the world seed +2015-06-29 11:23:55 [INFO] /setworldspawn: Sets a worlds's spawn point. If no coordinates are specified, the player's coordinates will be used. +2015-06-29 11:23:55 [INFO] /spawnpoint: Sets a player's spawn point +2015-06-29 11:23:55 [INFO] /stop: Stops the server, with optional reason +2015-06-29 11:23:55 [INFO] /tell: Sends a private message to the given player +2015-06-29 11:23:55 [INFO] /time: Changes the time on each world +2015-06-29 11:23:55 [INFO] /timings: Records timings to see performance of the server. +2015-06-29 11:23:55 [INFO] /tp: Teleports the given player (or yourself) to another player or coordinates +2015-06-29 11:23:55 [INFO] /version: Gets the version of this server including any plugins in use +2015-06-29 11:23:55 [INFO] /whitelist: Manages the list of players allowed to use this server +2015-06-29 11:23:59 [INFO] Unknown command. Type "help" for help. +2015-06-29 11:24:00 [INFO] CONSOLE: Reloading server... +2015-06-29 11:24:00 [INFO] Saving levels... +2015-06-29 11:24:00 [INFO] Reloading properties... +2015-06-29 11:24:00 [INFO] CONSOLE: Reload complete. +2015-06-29 11:24:31 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-29 11:24:31 [INFO] Loading pocketmine.yml... +2015-06-29 11:24:31 [INFO] Loading server properties... +2015-06-29 11:24:31 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-29 11:24:31 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-29 11:24:31 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-29 11:24:32 [INFO] Preparing level "world" +2015-06-29 11:24:32 [INFO] Starting GS4 status listener +2015-06-29 11:24:32 [INFO] Setting query port to 19132 +2015-06-29 11:24:32 [INFO] Query running on 0.0.0.0:19132 +2015-06-29 11:24:32 [INFO] Default game type: SURVIVAL +2015-06-29 11:24:32 [INFO] Done (1.172s)! For help, type "help" or "?" +2015-06-29 11:25:20 [INFO] Starting Minecraft: PE server version v0.10.5 alpha +2015-06-29 11:25:20 [INFO] Loading pocketmine.yml... +2015-06-29 11:25:20 [INFO] Loading server properties... +2015-06-29 11:25:20 [INFO] Starting Minecraft PE server on 0.0.0.0:19132 +2015-06-29 11:25:20 [INFO] This server is running PocketMine-MP version 1.4.1-980 "絶好(Zekkou)ケーキ(Cake)" (API 1.11.0) +2015-06-29 11:25:20 [INFO] PocketMine-MP is distributed under the LGPL License +2015-06-29 11:25:21 [INFO] Preparing level "world" +2015-06-29 11:25:21 [INFO] Starting GS4 status listener +2015-06-29 11:25:21 [INFO] Setting query port to 19132 +2015-06-29 11:25:21 [INFO] Query running on 0.0.0.0:19132 +2015-06-29 11:25:21 [INFO] Default game type: SURVIVAL +2015-06-29 11:25:21 [INFO] Done (1.173s)! For help, type "help" or "?" +2015-06-29 11:26:48 [INFO] [/1.152.97.61:19669] logged out due to client disconnect +2015-06-29 [11:29:32] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [11:29:32] [Server thread/INFO]: Loading server properties... +2015-06-29 [11:29:32] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [11:29:32] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [11:29:32] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [11:29:32] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [11:29:32] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [11:29:32] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [11:29:33] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [11:29:33] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [11:29:33] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [11:29:33] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [11:29:33] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [11:29:33] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [11:29:33] [Server thread/INFO]: Preparing level "world" +2015-06-29 [11:29:34] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [11:29:34] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [11:29:34] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [11:29:34] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [11:29:34] [Server thread/INFO]: Done (1.523s)! For help, type "help" or "?" +2015-06-29 [11:29:53] [Server thread/NOTICE]: Player data not found for "chissling", creating new profile +2015-06-29 [11:29:53] [Server thread/INFO]: chissling[/1.152.97.61:2759] logged in with entity id 1 at (world, 128, 62, 128) +2015-06-29 [11:29:54] [Server thread/INFO]: chissling joined the game +2015-06-29 [11:31:55] [Server thread/NOTICE]: Player data not found for "charcoal_inc", creating new profile +2015-06-29 [11:31:55] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:37163] logged in with entity id 6 at (world, 128, 62, 128) +2015-06-29 [11:31:56] [Server thread/INFO]: Charcoal_Inc joined the game +2015-06-29 [11:32:01] [Server thread/NOTICE]: Player data not found for "lightningalex_", creating new profile +2015-06-29 [11:32:01] [Server thread/INFO]: LightningAlex_[/95.151.204.139:58541] logged in with entity id 7 at (world, 128, 62, 128) +2015-06-29 [11:32:02] [Server thread/INFO]: LightningAlex_ joined the game +2015-06-29 [11:32:06] [Server thread/NOTICE]: Player data not found for "flipinpiggeh", creating new profile +2015-06-29 [11:32:06] [Server thread/INFO]: FlipinPiggeh[/135.0.229.178:52131] logged in with entity id 8 at (world, 128, 62, 128) +2015-06-29 [11:32:08] [Server thread/INFO]: chiss world, yay! +2015-06-29 [11:32:09] [Server thread/INFO]: FlipinPiggeh joined the game +2015-06-29 [11:32:13] [Server thread/INFO]: Lectz[/72.91.34.54:50459] logged out due to Outdated client! +2015-06-29 [11:32:14] [Server thread/NOTICE]: Player data not found for "crumplex", creating new profile +2015-06-29 [11:32:14] [Server thread/INFO]: Crumplex[/73.5.179.208:50411] logged in with entity id 9 at (world, 128, 62, 128) +2015-06-29 [11:32:15] [Server thread/INFO]: Crumplex joined the game +2015-06-29 [11:32:21] [Server thread/INFO]: chissling left the game +2015-06-29 [11:32:21] [Server thread/INFO]: chissling[/1.152.97.61:2759] logged out due to client disconnect +2015-06-29 [11:32:22] [Server thread/INFO]: umm +2015-06-29 [11:32:23] [Server thread/NOTICE]: Player data not found for "steve", creating new profile +2015-06-29 [11:32:23] [Server thread/INFO]: Steve[/47.65.163.101:60062] logged in with entity id 10 at (world, 128, 62, 128) +2015-06-29 [11:32:24] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:32:24] [Server thread/NOTICE]: Player data not found for "zaidynzm9527", creating new profile +2015-06-29 [11:32:24] [Server thread/INFO]: zaidynzm9527[/120.151.31.188:52621] logged in with entity id 11 at (world, 128, 62, 128) +2015-06-29 [11:32:25] [Server thread/NOTICE]: Player data not found for "thecreativegamer", creating new profile +2015-06-29 [11:32:25] [Server thread/INFO]: TheCreativeGamer[/174.78.193.107:63649] logged in with entity id 12 at (world, 128, 62, 128) +2015-06-29 [11:32:25] [Server thread/INFO]: zaidynzm9527 joined the game +2015-06-29 [11:32:26] [Server thread/INFO]: TheCreativeGamer joined the game +2015-06-29 [11:32:36] [Server thread/INFO]: NO WAY +2015-06-29 [11:32:37] [Server thread/INFO]: erh a gersh guis +2015-06-29 [11:32:38] [Server thread/INFO]: im chasey +2015-06-29 [11:32:40] [Server thread/INFO]: I spelt my name wrong LOL +2015-06-29 [11:32:40] [Server thread/NOTICE]: Player data not found for "gsmash", creating new profile +2015-06-29 [11:32:40] [Server thread/INFO]: GSmash[/72.74.58.33:57317] logged in with entity id 13 at (world, 128, 62, 128) +2015-06-29 [11:32:41] [Server thread/INFO]: GSmash joined the game +2015-06-29 [11:32:41] [Server thread/INFO]: Steve left the game +2015-06-29 [11:32:41] [Server thread/INFO]: Steve[/47.65.163.101:60062] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:32:41] [Server thread/INFO]: Steve[/24.67.112.135:53596] logged in with entity id 14 at (world, 144.0416, 65, 124.7985) +2015-06-29 [11:32:42] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:32:44] [Server thread/INFO]: chaseymichael +2015-06-29 [11:32:47] [Server thread/INFO]: Steve left the game +2015-06-29 [11:32:47] [Server thread/INFO]: Steve[/24.67.112.135:53596] logged out due to client disconnect +2015-06-29 [11:32:47] [Server thread/INFO]: Steve[/47.65.163.101:60656] logged in with entity id 15 at (world, 144.0416, 65, 124.7985) +2015-06-29 [11:32:48] [Server thread/INFO]: lel I skrub, I havent put my skin on here +2015-06-29 [11:32:48] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:32:56] [Server thread/NOTICE]: Player data not found for "snowballcps", creating new profile +2015-06-29 [11:32:56] [Server thread/INFO]: Snowballcps[/98.178.137.183:50927] logged in with entity id 24 at (world, 128, 62, 128) +2015-06-29 [11:32:57] [Server thread/INFO]: Steve left the game +2015-06-29 [11:32:57] [Server thread/INFO]: Steve[/47.65.163.101:60656] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:32:57] [Server thread/INFO]: Steve[/68.190.243.10:59364] logged in with entity id 25 at (world, 144.0416, 65, 124.7985) +2015-06-29 [11:32:57] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [11:32:58] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:33:02] [Server thread/NOTICE]: Player data not found for "finndroidd", creating new profile +2015-06-29 [11:33:02] [Server thread/INFO]: Finndroidd[/72.50.86.39:31711] logged in with entity id 27 at (world, 128, 62, 128) +2015-06-29 [11:33:03] [Server thread/INFO]: Finndroidd joined the game +2015-06-29 [11:33:05] [Server thread/INFO]: SNOWBALL +2015-06-29 [11:33:05] [Server thread/NOTICE]: Player data not found for "xrambo", creating new profile +2015-06-29 [11:33:05] [Server thread/INFO]: xRambo[/216.188.215.96:58556] logged in with entity id 28 at (world, 128, 62, 128) +2015-06-29 [11:33:06] [Server thread/INFO]: xRambo joined the game +2015-06-29 [11:33:07] [Server thread/INFO]: NO FLIPPING WAY +2015-06-29 [11:33:09] [Server thread/INFO]: I legit spelt my name wrong +2015-06-29 [11:33:09] [Server thread/INFO]: LightningAlex_ left the game +2015-06-29 [11:33:09] [Server thread/INFO]: LightningAlex_[/95.151.204.139:58541] logged out due to timeout +2015-06-29 [11:33:10] [Server thread/INFO]: eeey +2015-06-29 [11:33:11] [Server thread/INFO]: uhhhh +2015-06-29 [11:33:14] [Server thread/NOTICE]: Player data not found for "sirbird", creating new profile +2015-06-29 [11:33:14] [Server thread/INFO]: SirBird[/85.65.138.176:60476] logged in with entity id 29 at (world, 128, 62, 128) +2015-06-29 [11:33:15] [Server thread/NOTICE]: Player data not found for "xslow", creating new profile +2015-06-29 [11:33:15] [Server thread/INFO]: xSlow[/47.65.163.101:64961] logged in with entity id 31 at (world, 128, 62, 128) +2015-06-29 [11:33:16] [Server thread/INFO]: MINEPLEX POCKET EDITION WOOOOO +2015-06-29 [11:33:16] [Server thread/INFO]: SirBird joined the game +2015-06-29 [11:33:16] [Server thread/NOTICE]: Player data not found for "matamex01", creating new profile +2015-06-29 [11:33:16] [Server thread/INFO]: matamex01[/24.1.176.231:64785] logged in with entity id 32 at (world, 128, 62, 128) +2015-06-29 [11:33:17] [Server thread/INFO]: chissling[/1.152.97.61:29874] logged in with entity id 33 at (world, 153.0734, 76, 200.0944) +2015-06-29 [11:33:20] [Server thread/INFO]: xSlow joined the game +2015-06-29 [11:33:20] [Server thread/INFO]: matamex01 joined the game +2015-06-29 [11:33:20] [Server thread/INFO]: chissling joined the game +2015-06-29 [11:33:21] [Server thread/NOTICE]: Player data not found for "xstar_89", creating new profile +2015-06-29 [11:33:21] [Server thread/INFO]: xStar_89[/71.57.47.150:61739] logged in with entity id 36 at (world, 128, 62, 128) +2015-06-29 [11:33:22] [Server thread/INFO]: xStar_89 joined the game +2015-06-29 [11:33:24] [Server thread/INFO]: FlipinPiggeh left the game +2015-06-29 [11:33:24] [Server thread/INFO]: FlipinPiggeh[/135.0.229.178:52131] logged out due to client disconnect +2015-06-29 [11:33:25] [Server thread/NOTICE]: Player data not found for "theogphoenix", creating new profile +2015-06-29 [11:33:25] [Server thread/INFO]: TheOGPhoenix[/107.107.60.45:40020] logged in with entity id 38 at (world, 128, 62, 128) +2015-06-29 [11:33:25] [Server thread/NOTICE]: Player data not found for "carson", creating new profile +2015-06-29 [11:33:25] [Server thread/INFO]: Carson[/24.67.112.135:53199] logged in with entity id 39 at (world, 128, 62, 128) +2015-06-29 [11:33:26] [Server thread/INFO]: TheOGPhoenix joined the game +2015-06-29 [11:33:26] [Server thread/INFO]: Carson joined the game +2015-06-29 [11:33:28] [Server thread/INFO]: oh +2015-06-29 [11:33:33] [Server thread/INFO]: ello lads +2015-06-29 [11:33:36] [Server thread/INFO]: Crumplex was slain by TheCreativeGamer +2015-06-29 [11:33:37] [Server thread/NOTICE]: Player data not found for "enderman_665", creating new profile +2015-06-29 [11:33:37] [Server thread/INFO]: Enderman_665[/75.164.204.188:53507] logged in with entity id 49 at (world, 128, 62, 128) +2015-06-29 [11:33:38] [Server thread/INFO]: Enderman_665 joined the game +2015-06-29 [11:33:41] [Server thread/INFO]: hello +2015-06-29 [11:33:44] [Server thread/INFO]: Steve left the game +2015-06-29 [11:33:44] [Server thread/INFO]: Steve[/68.190.243.10:59364] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:33:44] [Server thread/INFO]: Steve[/60.240.147.107:54974] logged in with entity id 56 at (world, 146.9602, 66, 112.5291) +2015-06-29 [11:33:45] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:33:49] [Server thread/INFO]: hi lol +2015-06-29 [11:33:49] [Server thread/INFO]: Steve left the game +2015-06-29 [11:33:49] [Server thread/INFO]: Steve[/60.240.147.107:54974] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:33:49] [Server thread/INFO]: Steve[/68.190.243.10:61507] logged in with entity id 61 at (world, 146.9602, 65, 112.5291) +2015-06-29 [11:33:51] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:33:51] [Server thread/INFO]: Cheeeees +2015-06-29 [11:33:52] [Server thread/NOTICE]: Player data not found for "millenium200", creating new profile +2015-06-29 [11:33:52] [Server thread/INFO]: millenium200[/65.189.205.183:56249] logged in with entity id 63 at (world, 128, 62, 128) +2015-06-29 [11:33:52] [Server thread/NOTICE]: Player data not found for "bob", creating new profile +2015-06-29 [11:33:52] [Server thread/INFO]: bob[/173.63.124.207:53757] logged in with entity id 64 at (world, 128, 62, 128) +2015-06-29 [11:33:53] [Server thread/INFO]: millenium200 joined the game +2015-06-29 [11:33:53] [Server thread/INFO]: bob joined the game +2015-06-29 [11:33:54] [Server thread/NOTICE]: Player data not found for "flippinpiggeh", creating new profile +2015-06-29 [11:33:54] [Server thread/INFO]: FlippinPiggeh[/135.0.229.178:59696] logged in with entity id 66 at (world, 128, 62, 128) +2015-06-29 [11:33:55] [Server thread/INFO]: FlippinPiggeh joined the game +2015-06-29 [11:33:58] [Server thread/INFO]: PE MINEPLEX??? :ooooo +2015-06-29 [11:33:58] [Server thread/NOTICE]: Player data not found for "3vandg", creating new profile +2015-06-29 [11:33:58] [Server thread/INFO]: 3vandg[/73.22.163.221:51384] logged in with entity id 69 at (world, 128, 62, 128) +2015-06-29 [11:33:58] [Server thread/INFO]: Steve left the game +2015-06-29 [11:33:58] [Server thread/INFO]: Steve[/68.190.243.10:61507] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:33:58] [Server thread/INFO]: Steve[/98.145.26.69:60738] logged in with entity id 71 at (world, 147.3914, 66, 112.5032) +2015-06-29 [11:33:59] [Server thread/INFO]: 3vandg joined the game +2015-06-29 [11:33:59] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:00] [Server thread/INFO]: so many steve +2015-06-29 [11:34:01] [Server thread/INFO]: hi +2015-06-29 [11:34:03] [Server thread/NOTICE]: Player data not found for "chuckplaysmc", creating new profile +2015-06-29 [11:34:03] [Server thread/INFO]: ChuckPlaysMC[/216.36.154.120:60217] logged in with entity id 75 at (world, 128, 62, 128) +2015-06-29 [11:34:04] [Server thread/INFO]: ChuckPlaysMC joined the game +2015-06-29 [11:34:06] [Server thread/NOTICE]: Player data not found for "breaddubbs", creating new profile +2015-06-29 [11:34:06] [Server thread/INFO]: BreadDubbs[/67.173.105.161:57569] logged in with entity id 76 at (world, 128, 62, 128) +2015-06-29 [11:34:06] [Server thread/INFO]: ObamaCares[/70.125.6.183:40537] logged out due to Outdated client! +2015-06-29 [11:34:06] [Server thread/INFO]: yo dog its me mojangpvp +2015-06-29 [11:34:07] [Server thread/INFO]: BreadDubbs joined the game +2015-06-29 [11:34:08] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:08] [Server thread/INFO]: Steve[/98.145.26.69:60738] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:08] [Server thread/INFO]: Steve[/50.175.156.220:62188] logged in with entity id 78 at (world, 159.5941, 69, 110.9408) +2015-06-29 [11:34:08] [Server thread/INFO]: Steve[/50.175.156.220:62188] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:08] [Server thread/INFO]: Steve[/60.240.147.107:60060] logged in with entity id 79 at (world, 159.5941, 69, 110.9408) +2015-06-29 [11:34:08] [Server thread/INFO]: Steve[/60.240.147.107:60060] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:08] [Server thread/INFO]: Steve[/108.81.233.128:53861] logged in with entity id 80 at (world, 159.5941, 69, 110.9408) +2015-06-29 [11:34:09] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:09] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:09] [Server thread/INFO]: Steve[/108.81.233.128:53861] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:09] [Server thread/INFO]: Steve[/166.170.30.88:28636] logged in with entity id 82 at (world, 159.5941, 69, 110.9408) +2015-06-29 [11:34:09] [Server thread/INFO]: Steve[/166.170.30.88:28636] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:09] [Server thread/INFO]: Steve[/76.114.51.74:50180] logged in with entity id 83 at (world, 159.5941, 69, 110.9408) +2015-06-29 [11:34:10] [Server thread/NOTICE]: Player data not found for "kcgraphics", creating new profile +2015-06-29 [11:34:10] [Server thread/INFO]: KCGraphics[/68.190.243.10:55161] logged in with entity id 84 at (world, 128, 62, 128) +2015-06-29 [11:34:10] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:11] [Server thread/INFO]: KCGraphics joined the game +2015-06-29 [11:34:13] [Server thread/INFO]: The Destroyer[/99.25.233.187:60530] logged out due to Invalid name! +2015-06-29 [11:34:14] [Server thread/INFO]: Hueh +2015-06-29 [11:34:15] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:15] [Server thread/INFO]: Steve[/76.114.51.74:50180] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:15] [Server thread/INFO]: Steve[/98.145.26.69:49661] logged in with entity id 86 at (world, 160.4442, 69, 106.0396) +2015-06-29 [11:34:15] [Server thread/INFO]: Steve[/98.145.26.69:49661] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:15] [Server thread/INFO]: Steve[/50.175.156.220:56602] logged in with entity id 87 at (world, 160.4442, 69, 106.0396) +2015-06-29 [11:34:16] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:18] [Server thread/INFO]: XD +2015-06-29 [11:34:18] [Server thread/INFO]: The Destroyer[/99.25.233.187:51486] logged out due to Invalid name! +2015-06-29 [11:34:19] [Server thread/NOTICE]: Player data not found for "joepcool14", creating new profile +2015-06-29 [11:34:19] [Server thread/INFO]: JoePCool14[/108.79.4.225:52512] logged in with entity id 88 at (world, 128, 62, 128) +2015-06-29 [11:34:19] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:19] [Server thread/INFO]: Steve[/50.175.156.220:56602] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:19] [Server thread/INFO]: Steve[/108.81.233.128:60993] logged in with entity id 89 at (world, 160.4442, 69, 106.0396) +2015-06-29 [11:34:20] [Server thread/INFO]: JoePCool14 joined the game +2015-06-29 [11:34:20] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:22] [Server thread/INFO]: Snowballcps drowned +2015-06-29 [11:34:26] [Server thread/INFO]: its chucknorris +2015-06-29 [11:34:27] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:27] [Server thread/INFO]: Steve[/108.81.233.128:60993] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:27] [Server thread/INFO]: Steve[/50.175.156.220:65204] logged in with entity id 93 at (world, 153.9446, 67, 107.8921) +2015-06-29 [11:34:28] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:28] [Server thread/NOTICE]: Player data not found for "mikelikesmuffins", creating new profile +2015-06-29 [11:34:28] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:53635] logged in with entity id 95 at (world, 128, 62, 128) +2015-06-29 [11:34:29] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [11:34:29] [Server thread/INFO]: pe bridges +2015-06-29 [11:34:29] [Server thread/INFO]: The Destroyer[/99.25.233.187:57157] logged out due to Invalid name! +2015-06-29 [11:34:31] [Server thread/INFO]: Bad +2015-06-29 [11:34:32] [Server thread/INFO]: Sup +2015-06-29 [11:34:34] [Server thread/INFO]: The Destroyer[/99.25.233.187:64399] logged out due to Invalid name! +2015-06-29 [11:34:34] [Server thread/NOTICE]: Player data not found for "pizzaman319", creating new profile +2015-06-29 [11:34:34] [Server thread/INFO]: PizzaMan319[/24.112.237.66:57446] logged in with entity id 100 at (world, 128, 62, 128) +2015-06-29 [11:34:35] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [11:34:36] [Server thread/NOTICE]: Player data not found for "15ibans", creating new profile +2015-06-29 [11:34:36] [Server thread/INFO]: 15Ibans[/72.91.34.54:40725] logged in with entity id 101 at (world, 128, 62, 128) +2015-06-29 [11:34:37] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [11:34:38] [Server thread/INFO]: matamex01 left the game +2015-06-29 [11:34:38] [Server thread/INFO]: matamex01[/24.1.176.231:64785] logged out due to client disconnect +2015-06-29 [11:34:39] [Server thread/INFO]: The Destroyer[/99.25.233.187:59745] logged out due to Invalid name! +2015-06-29 [11:34:39] [Server thread/INFO]: So many steves :P +2015-06-29 [11:34:41] [Server thread/INFO]: <3vandg> Hi +2015-06-29 [11:34:46] [Server thread/NOTICE]: Player data not found for "boo2300", creating new profile +2015-06-29 [11:34:46] [Server thread/INFO]: boo2300[/108.200.60.123:62912] logged in with entity id 106 at (world, 128, 62, 128) +2015-06-29 [11:34:47] [Server thread/INFO]: The Destroyer[/99.25.233.187:50011] logged out due to Invalid name! +2015-06-29 [11:34:48] [Server thread/INFO]: hey evan +2015-06-29 [11:34:49] [Server thread/INFO]: boo2300 joined the game +2015-06-29 [11:34:49] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:49] [Server thread/INFO]: Steve[/50.175.156.220:65204] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:49] [Server thread/INFO]: Steve[/99.117.132.36:61057] logged in with entity id 108 at (world, 154.8916, 68, 107.6583) +2015-06-29 [11:34:49] [Server thread/INFO]: TheCreativeGamer left the game +2015-06-29 [11:34:49] [Server thread/INFO]: TheCreativeGamer[/174.78.193.107:63649] logged out due to client disconnect +2015-06-29 [11:34:50] [Server thread/NOTICE]: Player data not found for "xpixel", creating new profile +2015-06-29 [11:34:50] [Server thread/INFO]: xPixel[/24.29.95.166:53693] logged in with entity id 110 at (world, 128, 62, 128) +2015-06-29 [11:34:51] [Server thread/INFO]: mikelikesmuffins left the game +2015-06-29 [11:34:51] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:53635] logged out due to timeout +2015-06-29 [11:34:51] [Server thread/INFO]: ChuckPlaysMC left the game +2015-06-29 [11:34:51] [Server thread/INFO]: ChuckPlaysMC[/216.36.154.120:60217] logged out due to client disconnect +2015-06-29 [11:34:52] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:52] [Server thread/INFO]: The Destroyer[/99.25.233.187:57658] logged out due to Invalid name! +2015-06-29 [11:34:52] [Server thread/INFO]: <15Ibans> dont feel like setting my skin zd +2015-06-29 [11:34:54] [Server thread/INFO]: Steve left the game +2015-06-29 [11:34:54] [Server thread/INFO]: Steve[/99.117.132.36:61057] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:34:54] [Server thread/INFO]: Steve[/98.145.26.69:60632] logged in with entity id 111 at (world, 154.8916, 67, 107.6583) +2015-06-29 [11:34:55] [Server thread/INFO]: xPixel joined the game +2015-06-29 [11:34:55] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:34:55] [Server thread/WARNING]: xRambo moved wrongly! +2015-06-29 [11:34:55] [Server thread/INFO]: bob left the game +2015-06-29 [11:34:55] [Server thread/INFO]: bob[/173.63.124.207:53757] logged out due to client disconnect +2015-06-29 [11:34:56] [Server thread/INFO]: stop killing +2015-06-29 [11:35:02] [Server thread/INFO]: Steve left the game +2015-06-29 [11:35:02] [Server thread/INFO]: Steve[/98.145.26.69:60632] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:35:02] [Server thread/INFO]: Steve[/76.114.51.74:55806] logged in with entity id 113 at (world, 154.8916, 67, 107.6583) +2015-06-29 [11:35:02] [Server thread/INFO]: Orthdntst_[/98.200.179.70:47528] logged out due to Outdated client! +2015-06-29 [11:35:02] [Server thread/INFO]: The Destroyer[/99.25.233.187:59015] logged out due to Invalid name! +2015-06-29 [11:35:03] [Server thread/NOTICE]: Player data not found for "chucknorris", creating new profile +2015-06-29 [11:35:03] [Server thread/INFO]: ChuckNorris[/216.36.154.120:50412] logged in with entity id 114 at (world, 128, 62, 128) +2015-06-29 [11:35:06] [Server thread/INFO]: Steve[/76.114.51.74:55806] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:35:06] [Server thread/INFO]: Steve[/60.240.147.107:56725] logged in with entity id 119 at (world, 154.8916, 67, 107.6583) +2015-06-29 [11:35:06] [Server thread/INFO]: ChuckNorris joined the game +2015-06-29 [11:35:07] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:35:07] [Server thread/NOTICE]: Player data not found for "pyzen", creating new profile +2015-06-29 [11:35:07] [Server thread/INFO]: Pyzen[/108.81.233.128:59157] logged in with entity id 120 at (world, 128, 62, 128) +2015-06-29 [11:35:07] [Server thread/INFO]: xRambo was slain by zaidynzm9527 +2015-06-29 [11:35:07] [Server thread/INFO]: The Destroyer[/99.25.233.187:64904] logged out due to Invalid name! +2015-06-29 [11:35:08] [Server thread/INFO]: Pyzen joined the game +2015-06-29 [11:35:08] [Server thread/INFO]: Steve left the game +2015-06-29 [11:35:08] [Server thread/INFO]: Steve[/60.240.147.107:56725] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:35:08] [Server thread/INFO]: Steve[/98.145.26.69:55489] logged in with entity id 122 at (world, 154.8916, 67, 107.6583) +2015-06-29 [11:35:09] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:35:10] [Server thread/INFO]: Im here. +2015-06-29 [11:35:10] [Server thread/NOTICE]: Player data not found for "chaseymichael", creating new profile +2015-06-29 [11:35:10] [Server thread/INFO]: chaseymichael[/174.78.193.107:65217] logged in with entity id 124 at (world, 128, 62, 128) +2015-06-29 [11:35:11] [Server thread/INFO]: The Destroyer[/99.25.233.187:51978] logged out due to Invalid name! +2015-06-29 [11:35:11] [Server thread/INFO]: chaseymichael joined the game +2015-06-29 [11:35:13] [Server thread/INFO]: boo2300 drowned +2015-06-29 [11:35:14] [Server thread/INFO]: mojangpvp mobile[/173.63.124.207:58579] logged out due to Invalid name! +2015-06-29 [11:35:15] [Server thread/INFO]: The Destroyer[/99.25.233.187:58286] logged out due to Invalid name! +2015-06-29 [11:35:18] [Server thread/INFO]: 15Ibans was slain by zaidynzm9527 +2015-06-29 [11:35:18] [Server thread/INFO]: The Destroyer[/99.25.233.187:50539] logged out due to Invalid name! +2015-06-29 [11:35:19] [Server thread/INFO]: Enderman_665 was slain by SirBird +2015-06-29 [11:35:21] [Server thread/INFO]: st3ven here +2015-06-29 [11:35:22] [Server thread/INFO]: The Destroyer[/99.25.233.187:57283] logged out due to Invalid name! +2015-06-29 [11:35:24] [Server thread/NOTICE]: Player data not found for "joeswanson", creating new profile +2015-06-29 [11:35:24] [Server thread/INFO]: JoeSwanson[/70.125.6.183:60754] logged in with entity id 131 at (world, 128, 62, 128) +2015-06-29 [11:35:26] [Server thread/NOTICE]: Player data not found for "scharf", creating new profile +2015-06-29 [11:35:26] [Server thread/INFO]: Scharf[/173.52.240.116:63852] logged in with entity id 133 at (world, 128, 62, 128) +2015-06-29 [11:35:28] [Server thread/WARNING]: PizzaMan319 moved wrongly! +2015-06-29 [11:35:31] [Server thread/INFO]: GSmash was slain by zaidynzm9527 +2015-06-29 [11:35:33] [Server thread/NOTICE]: Player data not found for "mojangpvp", creating new profile +2015-06-29 [11:35:33] [Server thread/INFO]: mojangpvp[/173.63.124.207:52037] logged in with entity id 138 at (world, 128, 62, 128) +2015-06-29 [11:35:34] [Server thread/INFO]: chaseymichael was slain by zaidynzm9527 +2015-06-29 [11:35:35] [Server thread/NOTICE]: Player data not found for "221b", creating new profile +2015-06-29 [11:35:35] [Server thread/INFO]: 221B[/76.114.51.74:63363] logged in with entity id 140 at (world, 128, 62, 128) +2015-06-29 [11:35:35] [Server thread/INFO]: JoeSwanson joined the game +2015-06-29 [11:35:35] [Server thread/INFO]: Scharf joined the game +2015-06-29 [11:35:35] [Server thread/INFO]: mojangpvp joined the game +2015-06-29 [11:35:35] [Server thread/INFO]: Pyzen was slain by zaidynzm9527 +2015-06-29 [11:35:36] [Server thread/INFO]: 221B joined the game +2015-06-29 [11:35:40] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [11:35:40] [Server thread/INFO]: PizzaMan319[/24.112.237.66:57446] logged out due to client disconnect +2015-06-29 [11:35:43] [Server thread/INFO]: TheOGPhoenix was slain by FlippinPiggeh +2015-06-29 [11:35:43] [Server thread/INFO]: Finndroidd left the game +2015-06-29 [11:35:43] [Server thread/INFO]: Finndroidd[/72.50.86.39:31711] logged out due to timeout +2015-06-29 [11:35:43] [Server thread/INFO]: Read announcements ;) +2015-06-29 [11:35:43] [Server thread/INFO]: chiss +2015-06-29 [11:35:45] [Server thread/INFO]: Steve left the game +2015-06-29 [11:35:45] [Server thread/INFO]: Steve[/98.145.26.69:55489] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:35:45] [Server thread/INFO]: Steve[/50.175.156.220:49349] logged in with entity id 147 at (world, 184.5627, 78.9216, 88.6842) +2015-06-29 [11:35:46] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:35:47] [Server thread/INFO]: PizzaMan319[/24.112.237.66:58147] logged in with entity id 150 at (world, 169.2074, 65, 141.3802) +2015-06-29 [11:35:48] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [11:35:49] [Server thread/NOTICE]: Player data not found for "drew", creating new profile +2015-06-29 [11:35:49] [Server thread/INFO]: Drew[/99.117.132.36:55806] logged in with entity id 151 at (world, 128, 62, 128) +2015-06-29 [11:35:50] [Server thread/NOTICE]: Player data not found for "crafterthatcraft", creating new profile +2015-06-29 [11:35:50] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:61004] logged in with entity id 153 at (world, 128, 62, 128) +2015-06-29 [11:35:50] [Server thread/INFO]: FlippinPiggeh was slain by xPixel +2015-06-29 [11:35:50] [Server thread/INFO]: why +2015-06-29 [11:35:51] [Server thread/INFO]: Drew joined the game +2015-06-29 [11:35:51] [Server thread/INFO]: xPixel was slain by zaidynzm9527 +2015-06-29 [11:35:51] [Server thread/INFO]: crafterthatcraft joined the game +2015-06-29 [11:35:52] [Server thread/INFO]: <3vandg> Leave id you +2015-06-29 [11:35:54] [Server thread/NOTICE]: Player data not found for "ironmanmatt2000", creating new profile +2015-06-29 [11:35:54] [Server thread/INFO]: ironmanmatt2000[/99.25.233.187:65434] logged in with entity id 162 at (world, 128, 62, 128) +2015-06-29 [11:35:55] [Server thread/INFO]: xSlow was slain by zaidynzm9527 +2015-06-29 [11:35:56] [Server thread/INFO]: Pyzen left the game +2015-06-29 [11:35:56] [Server thread/INFO]: Pyzen[/108.81.233.128:59157] logged out due to timeout +2015-06-29 [11:35:56] [Server thread/INFO]: ironmanmatt2000 joined the game +2015-06-29 [11:35:57] [Server thread/INFO]: matamex01[/24.1.176.231:52034] logged in with entity id 165 at (world, 143.7, 63, 128.113) +2015-06-29 [11:35:59] [Server thread/INFO]: matamex01 joined the game +2015-06-29 [11:36:00] [Server thread/INFO]: TheOGPhoenix left the game +2015-06-29 [11:36:00] [Server thread/INFO]: TheOGPhoenix[/107.107.60.45:40020] logged out due to timeout +2015-06-29 [11:36:04] [Server thread/INFO]: im gr8p +2015-06-29 [11:36:05] [Server thread/INFO]: Ehsts this for? +2015-06-29 [11:36:05] [Server thread/INFO]: Carson was slain by zaidynzm9527 +2015-06-29 [11:36:06] [Server thread/INFO]: ⏪⏪ +2015-06-29 [11:36:07] [Server thread/INFO]: * 15Ibans e +2015-06-29 [11:36:07] [Server thread/INFO]: whats up noobs +2015-06-29 [11:36:08] [Server thread/INFO]: Steve left the game +2015-06-29 [11:36:08] [Server thread/INFO]: Steve[/50.175.156.220:49349] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:36:08] [Server thread/INFO]: Steve[/75.166.54.109:52105] logged in with entity id 172 at (world, 184.3115, 78, 89.2672) +2015-06-29 [11:36:09] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:36:09] [Server thread/INFO]: Finndroidd[/72.50.86.39:3345] logged in with entity id 173 at (world, 174.7, 63, 151.7) +2015-06-29 [11:36:11] [Server thread/INFO]: Finndroidd joined the game +2015-06-29 [11:36:11] [Server thread/INFO]: PizzaMan319 was slain by zaidynzm9527 +2015-06-29 [11:36:11] [Server thread/INFO]: this is great +2015-06-29 [11:36:13] [Server thread/INFO]: TheOGPhoenix[/107.107.60.45:40483] logged in with entity id 178 at (world, 128, 62, 128) +2015-06-29 [11:36:14] [Server thread/INFO]: mata hacks +2015-06-29 [11:36:15] [Server thread/INFO]: TheOGPhoenix joined the game +2015-06-29 [11:36:16] [Server thread/INFO]: mojangpvp died +2015-06-29 [11:36:18] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:53795] logged in with entity id 181 at (world, 138.8562, 63.099, 129.2029) +2015-06-29 [11:36:19] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [11:36:19] [Server thread/INFO]: Charcoal_Inc was slain by zaidynzm9527 +2015-06-29 [11:36:20] [Server thread/NOTICE]: Player data not found for "st3ven_", creating new profile +2015-06-29 [11:36:20] [Server thread/INFO]: St3ven_[/98.145.26.69:65112] logged in with entity id 188 at (world, 128, 62, 128) +2015-06-29 [11:36:20] [Server thread/INFO]: Announcements says to change name +2015-06-29 [11:36:21] [Server thread/INFO]: lel +2015-06-29 [11:36:21] [Server thread/INFO]: St3ven_ joined the game +2015-06-29 [11:36:22] [Server thread/INFO]: no being steve +2015-06-29 [11:36:24] [Server thread/INFO]: Steve left the game +2015-06-29 [11:36:24] [Server thread/INFO]: Steve[/75.166.54.109:52105] logged out due to client disconnect +2015-06-29 [11:36:25] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:36:26] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:36:31] [Server thread/NOTICE]: Player data not found for "danbo", creating new profile +2015-06-29 [11:36:31] [Server thread/INFO]: Danbo[/121.55.199.141:61308] logged in with entity id 204 at (world, 128, 62, 128) +2015-06-29 [11:36:32] [Server thread/NOTICE]: Player data not found for "gr8p", creating new profile +2015-06-29 [11:36:32] [Server thread/INFO]: gr8p[/50.175.156.220:53917] logged in with entity id 206 at (world, 128, 62, 128) +2015-06-29 [11:36:32] [Server thread/INFO]: <3vandg> I cant type on mobile sideways. +2015-06-29 [11:36:32] [Server thread/INFO]: Danbo joined the game +2015-06-29 [11:36:33] [Server thread/INFO]: gr8p joined the game +2015-06-29 [11:36:35] [Server thread/INFO]: mikelikesmuffins left the game +2015-06-29 [11:36:35] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:53795] logged out due to timeout +2015-06-29 [11:36:37] [Server thread/NOTICE]: Player data not found for "xmatthew_", creating new profile +2015-06-29 [11:36:37] [Server thread/INFO]: xMatthew_[/24.118.114.215:52403] logged in with entity id 210 at (world, 128, 62, 128) +2015-06-29 [11:36:38] [Server thread/INFO]: swag +2015-06-29 [11:36:39] [Server thread/INFO]: * mojangpvp hello +2015-06-29 [11:36:42] [Server thread/INFO]: hey +2015-06-29 [11:36:43] [Server thread/NOTICE]: Player data not found for "jlogaming", creating new profile +2015-06-29 [11:36:43] [Server thread/INFO]: Jlogaming[/104.235.41.90:51435] logged in with entity id 215 at (world, 128, 62, 128) +2015-06-29 [11:36:43] [Server thread/WARNING]: BreadDubbs moved wrongly! +2015-06-29 [11:36:46] [Server thread/INFO]: what is this +2015-06-29 [11:36:47] [Server thread/INFO]: hey +2015-06-29 [11:36:47] [Server thread/INFO]: ChuckNorris was slain by zaidynzm9527 +2015-06-29 [11:36:50] [Server thread/WARNING]: mojangpvp moved wrongly! +2015-06-29 [11:36:51] [Server thread/INFO]: Ehstre we do +2015-06-29 [11:36:51] [Server thread/INFO]: Enderman_665 left the game +2015-06-29 [11:36:51] [Server thread/INFO]: Enderman_665[/75.164.204.188:53507] logged out due to client disconnect +2015-06-29 [11:36:52] [Server thread/INFO]: Steve[/166.175.63.79:51392] logged in with entity id 223 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:36:52] [Server thread/INFO]: SirBird was slain by TheOGPhoenix +2015-06-29 [11:36:55] [Server thread/INFO]: xStar_89 left the game +2015-06-29 [11:36:55] [Server thread/INFO]: xStar_89[/71.57.47.150:61739] logged out due to client disconnect +2015-06-29 [11:36:55] [Server thread/INFO]: GSmash left the game +2015-06-29 [11:36:55] [Server thread/INFO]: GSmash[/72.74.58.33:57317] logged out due to client disconnect +2015-06-29 [11:36:55] [Server thread/NOTICE]: Player data not found for "bloodmiester_", creating new profile +2015-06-29 [11:36:55] [Server thread/INFO]: BloodMiester_[/97.101.46.243:35094] logged in with entity id 224 at (world, 128, 62, 128) +2015-06-29 [11:36:55] [Server thread/INFO]: ironmanmatt2000 was slain by BreadDubbs +2015-06-29 [11:36:56] [Server thread/INFO]: CLANZ? +2015-06-29 [11:36:57] [Server thread/INFO]: PE Mineplex +2015-06-29 [11:36:58] [Server thread/NOTICE]: Player data not found for "ghost10000", creating new profile +2015-06-29 [11:36:58] [Server thread/INFO]: Ghost10000[/75.166.54.109:61318] logged in with entity id 225 at (world, 128, 62, 128) +2015-06-29 [11:36:58] [Server thread/INFO]: matamex01 left the game +2015-06-29 [11:36:58] [Server thread/INFO]: matamex01[/24.1.176.231:52034] logged out due to client disconnect +2015-06-29 [11:36:59] [Server thread/INFO]: LO +2015-06-29 [11:37:00] [Server thread/INFO]: just got a skype message about it +2015-06-29 [11:37:02] [Server thread/INFO]: * JoePCool14 is Best Trainee +2015-06-29 [11:37:03] [Server thread/INFO]: whatre we doing* +2015-06-29 [11:37:03] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:37:03] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:37:06] [Server thread/NOTICE]: Player data not found for "tort", creating new profile +2015-06-29 [11:37:06] [Server thread/INFO]: Tort[/99.182.2.129:65515] logged in with entity id 230 at (world, 128, 62, 128) +2015-06-29 [11:37:06] [Server thread/INFO]: Finndroidd left the game +2015-06-29 [11:37:06] [Server thread/INFO]: Finndroidd[/72.50.86.39:3345] logged out due to timeout +2015-06-29 [11:37:07] [Server thread/WARNING]: Carson moved wrongly! +2015-06-29 [11:37:14] [Server thread/NOTICE]: Player data not found for "matamex", creating new profile +2015-06-29 [11:37:14] [Server thread/INFO]: Matamex[/24.1.176.231:61183] logged in with entity id 240 at (world, 128, 62, 128) +2015-06-29 [11:37:14] [Server thread/INFO]: ew trainees +2015-06-29 [11:37:15] [Server thread/INFO]: this is clans staff testing!!!! +2015-06-29 [11:37:15] [Server thread/NOTICE]: Player data not found for "pikachudigsmc", creating new profile +2015-06-29 [11:37:15] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:50641] logged in with entity id 242 at (world, 128, 62, 128) +2015-06-29 [11:37:15] [Server thread/INFO]: So clans is PE only? +2015-06-29 [11:37:17] [Server thread/NOTICE]: Player data not found for "biohazard_", creating new profile +2015-06-29 [11:37:17] [Server thread/INFO]: biohazard_[/76.16.212.5:61508] logged in with entity id 244 at (world, 128, 62, 128) +2015-06-29 [11:37:18] [Server thread/INFO]: mojangpvp left the game +2015-06-29 [11:37:18] [Server thread/INFO]: mojangpvp[/173.63.124.207:52037] logged out due to client disconnect +2015-06-29 [11:37:21] [Server thread/INFO]: just being online +2015-06-29 [11:37:21] [Server thread/INFO]: clanzz +2015-06-29 [11:37:23] [Server thread/INFO]: ChuckNorris left the game +2015-06-29 [11:37:23] [Server thread/INFO]: ChuckNorris[/216.36.154.120:50412] logged out due to client disconnect +2015-06-29 [11:37:23] [Server thread/INFO]: xD +2015-06-29 [11:37:23] [Server thread/INFO]: this is clans gg +2015-06-29 [11:37:25] [Server thread/INFO]: doing a stress test +2015-06-29 [11:37:27] [Server thread/INFO]: xD +2015-06-29 [11:37:28] [Server thread/INFO]: Enderman_665[/75.164.204.188:50766] logged in with entity id 254 at (world, 163.3807, 71, 113.1532) +2015-06-29 [11:37:30] [Server thread/INFO]: 3vandg was slain by crafterthatcraft +2015-06-29 [11:37:31] [Server thread/NOTICE]: Player data not found for "evilwarriorgirl", creating new profile +2015-06-29 [11:37:31] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:59240] logged in with entity id 256 at (world, 128, 62, 128) +2015-06-29 [11:37:31] [Server thread/INFO]: chunk errors lol +2015-06-29 [11:37:32] [Server thread/INFO]: xStar_89[/71.57.47.150:53191] logged in with entity id 259 at (world, 161.016, 70, 116.4202) +2015-06-29 [11:37:33] [Server thread/INFO]: [Server] were just doing a stress test +2015-06-29 [11:37:36] [Server thread/INFO]: BloodMiester_[/97.101.46.243:35094] logged out due to timeout +2015-06-29 [11:37:36] [Server thread/INFO]: Jlogaming[/104.235.41.90:51435] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:37:36] [Server thread/INFO]: Jlogaming[/104.235.41.90:64762] logged in with entity id 262 at (world, 128, 62, 128) +2015-06-29 [11:37:36] [Server thread/INFO]: Ghost10000[/75.166.54.109:61318] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:37:36] [Server thread/INFO]: Ghost10000[/75.166.54.109:49450] logged in with entity id 263 at (world, 128, 62, 128) +2015-06-29 [11:37:37] [Server thread/INFO]: zaidynzm9527 fell from a high place +2015-06-29 [11:37:38] [Server thread/INFO]: Danbo left the game +2015-06-29 [11:37:38] [Server thread/INFO]: Danbo[/121.55.199.141:61308] logged out due to timeout +2015-06-29 [11:37:38] [Server thread/INFO]: [Server] to see how much resources the server uses +2015-06-29 [11:37:41] [Server thread/NOTICE]: Player data not found for "bloodmiester", creating new profile +2015-06-29 [11:37:41] [Server thread/INFO]: BloodMiester[/97.101.46.243:50882] logged in with entity id 277 at (world, 128, 62, 128) +2015-06-29 [11:37:43] [Server thread/INFO]: <3 3vandg +2015-06-29 [11:37:43] [Server thread/INFO]: [Server] need to get 100 players +2015-06-29 [11:37:44] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:59870] logged in with entity id 283 at (world, 138.8739, 63.02, 129.1943) +2015-06-29 [11:37:46] [Server thread/INFO]: Matamex[/24.1.176.231:61183] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:37:46] [Server thread/INFO]: Matamex[/24.1.176.231:52562] logged in with entity id 284 at (world, 128, 62, 128) +2015-06-29 [11:37:46] [Server thread/INFO]: Whiztech21[/70.79.252.242:63220] logged out due to Outdated client! +2015-06-29 [11:37:47] [Server thread/INFO]: 15Ibans was slain by TheOGPhoenix +2015-06-29 [11:37:48] [Server thread/INFO]: * SirBird hi +2015-06-29 [11:37:49] [Server thread/INFO]: Enderman_665[/75.164.204.188:50766] logged out due to timeout +2015-06-29 [11:37:51] [Server thread/INFO]: gr8p was slain by BreadDubbs +2015-06-29 [11:37:51] [Server thread/NOTICE]: Player data not found for "xstrafepvpz_", creating new profile +2015-06-29 [11:37:51] [Server thread/INFO]: xStrafePvPz_[/98.94.21.88:34729] logged in with entity id 288 at (world, 128, 62, 128) +2015-06-29 [11:37:51] [Server thread/INFO]: mojangpvp[/173.63.124.207:56914] logged in with entity id 289 at (world, 113.5796, 69, 76.6632) +2015-06-29 [11:37:52] [Server thread/WARNING]: xSlow moved wrongly! +2015-06-29 [11:37:54] [Server thread/INFO]: xRambo was slain by Charcoal_Inc +2015-06-29 [11:37:55] [Server thread/INFO]: ill get my alt device +2015-06-29 [11:37:56] [Server thread/NOTICE]: Player data not found for "nickel_", creating new profile +2015-06-29 [11:37:56] [Server thread/INFO]: Nickel_[/24.192.64.208:61202] logged in with entity id 291 at (world, 128, 62, 128) +2015-06-29 [11:37:56] [Server thread/INFO]: [Server] so please stay on line +2015-06-29 [11:37:56] [Server thread/INFO]: 3vandg drowned +2015-06-29 [11:37:56] [Server thread/INFO]: BloodMiester[/97.101.46.243:50882] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:37:56] [Server thread/INFO]: BloodMiester[/97.101.46.243:44133] logged in with entity id 293 at (world, 128, 62, 128) +2015-06-29 [11:37:57] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:59870] logged out due to timeout +2015-06-29 [11:37:57] [Server thread/INFO]: why pock edit ? +2015-06-29 [11:37:57] [Server thread/INFO]: Snowballcps was slain by TheOGPhoenix +2015-06-29 [11:37:57] [Server thread/NOTICE]: Player data not found for "bagel", creating new profile +2015-06-29 [11:37:57] [Server thread/INFO]: bagel[/104.55.196.27:60487] logged in with entity id 296 at (world, 128, 62, 128) +2015-06-29 [11:37:58] [Server thread/INFO]: TheOGPhoenix was slain by zaidynzm9527 +2015-06-29 [11:38:01] [Server thread/INFO]: chissling was slain by Charcoal_Inc +2015-06-29 [11:38:07] [Server thread/INFO]: FlippinPiggeh was slain by chaseymichael +2015-06-29 [11:38:08] [Server thread/INFO]: KCGraphics was slain by zaidynzm9527 +2015-06-29 [11:38:08] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:59532] logged in with entity id 309 at (world, 138.8739, 63.02, 129.1943) +2015-06-29 [11:38:09] [Server thread/INFO]: biohazard_[/76.16.212.5:61508] logged out due to timeout +2015-06-29 [11:38:11] [Server thread/INFO]: <3vandg> <3 grats crafter +2015-06-29 [11:38:15] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:50641] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:38:15] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:53835] logged in with entity id 318 at (world, 128, 62, 128) +2015-06-29 [11:38:17] [Server thread/INFO]: this is amazing +2015-06-29 [11:38:18] [Server thread/NOTICE]: Player data not found for "themegatony", creating new profile +2015-06-29 [11:38:18] [Server thread/INFO]: TheMegaTony[/78.1.31.84:62087] logged in with entity id 323 at (world, 128, 62, 128) +2015-06-29 [11:38:20] [Server thread/INFO]: Zaid :( +2015-06-29 [11:38:22] [Server thread/NOTICE]: Player data not found for "pyxlnotsteve", creating new profile +2015-06-29 [11:38:22] [Server thread/INFO]: PyxlnotSteve[/71.12.89.93:59174] logged in with entity id 330 at (world, 128, 62, 128) +2015-06-29 [11:38:23] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:59240] logged out due to timeout +2015-06-29 [11:38:23] [Server thread/INFO]: Thanks <3 +2015-06-29 [11:38:23] [Server thread/INFO]: Matamex[/24.1.176.231:52562] logged out due to timeout +2015-06-29 [11:38:24] [Server thread/INFO]: JoePCool14 was slain by zaidynzm9527 +2015-06-29 [11:38:24] [Server thread/INFO]: biohazard_[/76.16.212.5:50065] logged in with entity id 336 at (world, 128, 62, 128) +2015-06-29 [11:38:25] [Server thread/INFO]: Drew was slain by Charcoal_Inc +2015-06-29 [11:38:26] [Server thread/INFO]: Matamex[/24.1.176.231:58164] logged in with entity id 340 at (world, 128, 62, 128) +2015-06-29 [11:38:27] [Server thread/INFO]: clanz? +2015-06-29 [11:38:28] [Server thread/INFO]: xStrafePvPz_[/98.94.21.88:34729] logged out due to timeout +2015-06-29 [11:38:28] [Server thread/INFO]: <221B> spare me please +2015-06-29 [11:38:29] [Server thread/INFO]: xStrafePvPz_[/98.94.21.88:35205] logged in with entity id 343 at (world, 128, 62, 128) +2015-06-29 [11:38:29] [Server thread/INFO]: lel +2015-06-29 [11:38:30] [Server thread/NOTICE]: Player data not found for "tbrfluffy", creating new profile +2015-06-29 [11:38:30] [Server thread/INFO]: TBRFLUFFY[/45.50.23.11:62454] logged in with entity id 344 at (world, 128, 62, 128) +2015-06-29 [11:38:30] [Server thread/WARNING]: Carson moved wrongly! +2015-06-29 [11:38:32] [Server thread/INFO]: Ghost10000[/75.166.54.109:49450] logged out due to timeout +2015-06-29 [11:38:36] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:20346] logged in with entity id 348 at (world, 128, 62, 128) +2015-06-29 [11:38:36] [Server thread/NOTICE]: Player data not found for "sophiarose", creating new profile +2015-06-29 [11:38:36] [Server thread/INFO]: SophiaRose[/104.246.120.48:49571] logged in with entity id 349 at (world, 128, 62, 128) +2015-06-29 [11:38:38] [Server thread/INFO]: I'm finally glad I got this app +2015-06-29 [11:38:41] [Server thread/INFO]: xSlow was slain by Scharf +2015-06-29 [11:38:42] [Server thread/INFO]: mojangpvp[/173.63.124.207:56914] logged out due to timeout +2015-06-29 [11:38:42] [Server thread/INFO]: mojangpvp[/173.63.124.207:64667] logged in with entity id 354 at (world, 113.5796, 69, 76.6632) +2015-06-29 [11:38:42] [Server thread/INFO]: clanz +2015-06-29 [11:38:43] [Server thread/NOTICE]: Player data not found for "lightningjulian", creating new profile +2015-06-29 [11:38:43] [Server thread/INFO]: LightningJulian[/74.90.100.55:43283] logged in with entity id 356 at (world, 128, 62, 128) +2015-06-29 [11:38:45] [Server thread/INFO]: Scharf was slain by zaidynzm9527 +2015-06-29 [11:38:46] [Server thread/INFO]: xSlow left the game +2015-06-29 [11:38:46] [Server thread/INFO]: xSlow[/47.65.163.101:64961] logged out due to timeout +2015-06-29 [11:38:46] [Server thread/INFO]: ikr +2015-06-29 [11:38:49] [Server thread/INFO]: [CONSOLE: Set the time to 0] +2015-06-29 [11:38:50] [Server thread/NOTICE]: Player data not found for "whiztech21", creating new profile +2015-06-29 [11:38:50] [Server thread/INFO]: Whiztech21[/70.79.252.242:49982] logged in with entity id 363 at (world, 128, 62, 128) +2015-06-29 [11:38:50] [Server thread/WARNING]: ironmanmatt2000 moved wrongly! +2015-06-29 [11:38:50] [Server thread/NOTICE]: Player data not found for "playastar", creating new profile +2015-06-29 [11:38:50] [Server thread/INFO]: Playastar[/96.38.8.62:65497] logged in with entity id 365 at (world, 128, 62, 128) +2015-06-29 [11:38:53] [Server thread/INFO]: [CONSOLE: Given Diamond Helmet (310:0) * 1 to chissling] +2015-06-29 [11:38:55] [Server thread/INFO]: Enderman_665[/75.164.204.188:61905] logged in with entity id 370 at (world, 163.3807, 71, 113.1532) +2015-06-29 [11:38:56] [Server thread/INFO]: [CONSOLE: Given Diamond Chestplate (311:0) * 1 to chissling] +2015-06-29 [11:38:57] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:20346] logged out due to timeout +2015-06-29 [11:38:58] [Server thread/INFO]: [CONSOLE: Given Diamond Leggings (312:0) * 1 to chissling] +2015-06-29 [11:38:58] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:63374] logged in with entity id 373 at (world, 128, 62, 128) +2015-06-29 [11:38:58] [Server thread/INFO]: ChuckNorris[/216.36.154.120:56388] logged in with entity id 374 at (world, 141.3906, 64, 115.0458) +2015-06-29 [11:38:58] [Server thread/NOTICE]: Player data not found for "zexhl", creating new profile +2015-06-29 [11:38:58] [Server thread/INFO]: ZexhL[/68.38.223.43:60582] logged in with entity id 375 at (world, 128, 62, 128) +2015-06-29 [11:39:00] [Server thread/INFO]: 221B was slain by zaidynzm9527 +2015-06-29 [11:39:00] [Server thread/INFO]: [CONSOLE: Given Diamond Boots (313:0) * 1 to chissling] +2015-06-29 [11:39:04] [Server thread/INFO]: KCGraphics was slain by ironmanmatt2000 +2015-06-29 [11:39:05] [Server thread/INFO]: xStrafePvPz_[/98.94.21.88:35205] logged out due to timeout +2015-06-29 [11:39:08] [Server thread/INFO]: i am op +2015-06-29 [11:39:11] [Server thread/INFO]: Playastar[/96.38.8.62:65497] logged out due to timeout +2015-06-29 [11:39:11] [Server thread/INFO]: no char +2015-06-29 [11:39:12] [Server thread/INFO]: rawr +2015-06-29 [11:39:13] [Server thread/INFO]: JoePCool14 left the game +2015-06-29 [11:39:13] [Server thread/INFO]: JoePCool14[/108.79.4.225:52512] logged out due to timeout +2015-06-29 [11:39:14] [Server thread/INFO]: [CONSOLE: Given Diamond Sword (276:0) * 1 to chissling] +2015-06-29 [11:39:15] [Server thread/INFO]: TBRFLUFFY[/45.50.23.11:62454] logged out due to timeout +2015-06-29 [11:39:16] [Server thread/INFO]: xStrafePvPz_[/98.94.21.88:55826] logged in with entity id 405 at (world, 128, 62, 128) +2015-06-29 [11:39:17] [Server thread/NOTICE]: Player data not found for "fungames300", creating new profile +2015-06-29 [11:39:17] [Server thread/INFO]: Fungames300[/68.82.64.189:41583] logged in with entity id 407 at (world, 128, 62, 128) +2015-06-29 [11:39:17] [Server thread/INFO]: <221B> meanie +2015-06-29 [11:39:18] [Server thread/WARNING]: zaidynzm9527 moved wrongly! +2015-06-29 [11:39:19] [Server thread/INFO]: TheMegaTony[/78.1.31.84:62087] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:39:19] [Server thread/INFO]: TheMegaTony[/78.1.31.84:63671] logged in with entity id 410 at (world, 128, 62, 128) +2015-06-29 [11:39:20] [Server thread/INFO]: TBRFLUFFY[/45.50.23.11:50476] logged in with entity id 411 at (world, 128, 62, 128) +2015-06-29 [11:39:22] [Server thread/INFO]: BloodMiester[/97.101.46.243:44133] logged out due to timeout +2015-06-29 [11:39:22] [Server thread/INFO]: TheOGPhoenix was slain by zaidynzm9527 +2015-06-29 [11:39:23] [Server thread/INFO]: why cant i break stone lol +2015-06-29 [11:39:25] [Server thread/INFO]: plz nu +2015-06-29 [11:39:26] [Server thread/INFO]: ironmanmatt2000 was slain by zaidynzm9527 +2015-06-29 [11:39:28] [Server thread/INFO]: Enderman_665[/75.164.204.188:61905] logged out due to timeout +2015-06-29 [11:39:29] [Server thread/INFO]: Enderman_665[/75.164.204.188:51081] logged in with entity id 421 at (world, 163.3807, 71, 113.1532) +2015-06-29 [11:39:30] [Server thread/INFO]: Carson drowned +2015-06-29 [11:39:31] [Server thread/INFO]: xPixel was slain by St3ven_ +2015-06-29 [11:39:35] [Server thread/WARNING]: BreadDubbs moved wrongly! +2015-06-29 [11:39:36] [Server thread/INFO]: [Server] jeez inventory management in this is whack +2015-06-29 [11:39:36] [Server thread/WARNING]: BreadDubbs moved wrongly! +2015-06-29 [11:39:36] [Server thread/INFO]: xMatthew_ joined the game +2015-06-29 [11:39:38] [Server thread/INFO]: Snowballcps was slain by 221B +2015-06-29 [11:39:39] [Server thread/INFO]: chaseymichael was slain by chissling +2015-06-29 [11:39:39] [Server thread/INFO]: stop +2015-06-29 [11:39:40] [Server thread/INFO]: gr8p was slain by Charcoal_Inc +2015-06-29 [11:39:46] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:63374] logged out due to timeout +2015-06-29 [11:39:47] [Server thread/INFO]: crack is wack +2015-06-29 [11:39:47] [Server thread/INFO]: <15Ibans> &e e +2015-06-29 [11:39:47] [Server thread/INFO]: ChuckNorris[/216.36.154.120:56388] logged out due to timeout +2015-06-29 [11:39:48] [Server thread/INFO]: Steve[/166.175.63.79:51392] logged out due to timeout +2015-06-29 [11:39:48] [Server thread/INFO]: Drew was slain by xRambo +2015-06-29 [11:39:49] [Server thread/INFO]: xRambo was slain by zaidynzm9527 +2015-06-29 [11:39:52] [Server thread/INFO]: 221B was slain by TheOGPhoenix +2015-06-29 [11:39:52] [Server thread/NOTICE]: Player data not found for "rosaepicbeauty", creating new profile +2015-06-29 [11:39:52] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:52921] logged in with entity id 443 at (world, 128, 62, 128) +2015-06-29 [11:39:53] [Server thread/NOTICE]: Player data not found for "lpnt", creating new profile +2015-06-29 [11:39:53] [Server thread/INFO]: Lpnt[/24.165.82.15:63081] logged in with entity id 444 at (world, 128, 62, 128) +2015-06-29 [11:39:54] [Server thread/INFO]: crafterthatcraft was slain by SirBird +2015-06-29 [11:39:54] [Server thread/INFO]: ChuckNorris[/216.36.154.120:53219] logged in with entity id 445 at (world, 141.3906, 64, 115.0458) +2015-06-29 [11:39:55] [Server thread/INFO]: i have walked very far away +2015-06-29 [11:39:56] [Server thread/INFO]: St3ven_ was slain by ironmanmatt2000 +2015-06-29 [11:40:01] [Server thread/INFO]: <3vandg> hi +2015-06-29 [11:40:03] [Server thread/INFO]: TheMegaTony[/78.1.31.84:63671] logged out due to timeout +2015-06-29 [11:40:03] [Server thread/INFO]: stop +2015-06-29 [11:40:03] [Server thread/INFO]: <3 +2015-06-29 [11:40:04] [Server thread/INFO]: KCGraphics was slain by zaidynzm9527 +2015-06-29 [11:40:07] [Server thread/INFO]: swag +2015-06-29 [11:40:08] [Server thread/INFO]: * BreadDubbs Yeeee +2015-06-29 [11:40:09] [Server thread/INFO]: TheMegaTony[/31.217.85.57:35267] logged in with entity id 447 at (world, 128, 62, 128) +2015-06-29 [11:40:13] [Server thread/INFO]: <3vandg> Aw colors half work +2015-06-29 [11:40:14] [Server thread/INFO]: 15Ibans left the game +2015-06-29 [11:40:14] [Server thread/INFO]: 15Ibans[/72.91.34.54:40725] logged out due to timeout +2015-06-29 [11:40:19] [Server thread/INFO]: Chiss +2015-06-29 [11:40:21] [Server thread/INFO]: Naidemoc[/72.224.184.140:48619] logged out due to Outdated client! +2015-06-29 [11:40:21] [Server thread/INFO]: Carson was slain by Charcoal_Inc +2015-06-29 [11:40:24] [Server thread/INFO]: <3vandg> hi +2015-06-29 [11:40:26] [Server thread/INFO]: do you guys know that there are pe hadk +2015-06-29 [11:40:27] [Server thread/INFO]: TheOGPhoenix was slain by zaidynzm9527 +2015-06-29 [11:40:28] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:53835] logged out due to timeout +2015-06-29 [11:40:31] [Server thread/INFO]: If you need help with PE, let me know. +2015-06-29 [11:40:32] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:52921] logged out due to timeout +2015-06-29 [11:40:32] [Server thread/INFO]: 15Ibans[/72.91.34.54:42079] logged in with entity id 468 at (world, 193.6524, 63, 131.3) +2015-06-29 [11:40:36] [Server thread/INFO]: gr8p was slain by zaidynzm9527 +2015-06-29 [11:40:37] [Server thread/INFO]: Im from olanet minecraft op me please. +2015-06-29 [11:40:37] [Server thread/INFO]: Naidemoc[/72.224.184.140:45919] logged out due to Outdated client! +2015-06-29 [11:40:37] [Server thread/INFO]: T33MO[/199.68.161.229:48347] logged out due to Outdated client! +2015-06-29 [11:40:37] [Server thread/INFO]: Lpnt[/24.165.82.15:63081] logged out due to timeout +2015-06-29 [11:40:37] [Server thread/INFO]: Lpnt[/24.165.82.15:60201] logged in with entity id 477 at (world, 128, 62, 128) +2015-06-29 [11:40:40] [Server thread/INFO]: Been playing for three years. +2015-06-29 [11:40:41] [Server thread/INFO]: Drew fell from a high place +2015-06-29 [11:40:43] [Server thread/INFO]: xRambo was slain by 221B +2015-06-29 [11:40:43] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:54433] logged in with entity id 481 at (world, 128, 62, 128) +2015-06-29 [11:40:45] [Server thread/NOTICE]: Player data not found for "orthdntst_", creating new profile +2015-06-29 [11:40:45] [Server thread/INFO]: Orthdntst_[/98.200.179.70:50473] logged in with entity id 483 at (world, 128, 62, 128) +2015-06-29 [11:40:45] [Server thread/INFO]: T33MO[/199.68.161.229:36517] logged out due to Outdated client! +2015-06-29 [11:40:46] [Server thread/INFO]: TheMegaTony[/31.217.85.57:35267] logged out due to timeout +2015-06-29 [11:40:48] [Server thread/INFO]: crafterthatcraft was slain by chissling +2015-06-29 [11:40:51] [Server thread/INFO]: yea but iphones xant unless they are jailbroken +2015-06-29 [11:40:53] [Server thread/INFO]: Same here, Scharf. +2015-06-29 [11:40:56] [Server thread/INFO]: can inhave op +2015-06-29 [11:40:59] [Server thread/INFO]: why chiss ;-; +2015-06-29 [11:40:59] [Server thread/INFO]: Steve[/166.175.63.79:64693] logged in with entity id 489 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:41:01] [Server thread/INFO]: JoePCool14[/108.79.4.225:52839] logged in with entity id 491 at (world, 181.7, 73, 100.7) +2015-06-29 [11:41:01] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:56263] logged in with entity id 492 at (world, 128, 62, 128) +2015-06-29 [11:41:02] [Server thread/INFO]: TBRFLUFFY[/45.50.23.11:50476] logged out due to timeout +2015-06-29 [11:41:02] [Server thread/INFO]: TBRFLUFFY[/45.50.23.11:63422] logged in with entity id 493 at (world, 128, 62, 128) +2015-06-29 [11:41:02] [Server thread/INFO]: 15Ibans[/72.91.34.54:42079] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:41:02] [Server thread/INFO]: 15Ibans[/72.91.34.54:34275] logged in with entity id 494 at (world, 193.6524, 63, 131.3) +2015-06-29 [11:41:06] [Server thread/INFO]: Enderman_665[/75.164.204.188:51081] logged out due to timeout +2015-06-29 [11:41:07] [Server thread/NOTICE]: Player data not found for "gamesmasher413", creating new profile +2015-06-29 [11:41:07] [Server thread/INFO]: gamesmasher413[/72.74.58.33:55548] logged in with entity id 498 at (world, 128, 62, 128) +2015-06-29 [11:41:07] [Server thread/INFO]: Snowballcps drowned +2015-06-29 [11:41:10] [Server thread/INFO]: chissling was slain by zaidynzm9527 +2015-06-29 [11:41:11] [Server thread/INFO]: Carson was slain by TheOGPhoenix +2015-06-29 [11:41:14] [Server thread/INFO]: St3ven_ was slain by zaidynzm9527 +2015-06-29 [11:41:15] [Server thread/INFO]: TheMegaTony[/78.1.31.84:52361] logged in with entity id 513 at (world, 128, 62, 128) +2015-06-29 [11:41:15] [Server thread/INFO]: ironmanmatt2000 was slain by Charcoal_Inc +2015-06-29 [11:41:16] [Server thread/INFO]: 221B was slain by KCGraphics +2015-06-29 [11:41:16] [Server thread/INFO]: boo2300 left the game +2015-06-29 [11:41:16] [Server thread/INFO]: boo2300[/108.200.60.123:62912] logged out due to timeout +2015-06-29 [11:41:17] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:56263] logged out due to timeout +2015-06-29 [11:41:19] [Server thread/INFO]: Whiztech21[/70.79.252.242:49982] logged out due to timeout +2015-06-29 [11:41:19] [Server thread/INFO]: im jailbroken +2015-06-29 [11:41:20] [Server thread/INFO]: Drew left the game +2015-06-29 [11:41:20] [Server thread/INFO]: Drew[/99.117.132.36:55806] logged out due to client disconnect +2015-06-29 [11:41:21] [Server thread/INFO]: boo2300[/108.200.60.123:62034] logged in with entity id 514 at (world, 71.4636, 68.0549, 64.842) +2015-06-29 [11:41:22] [Server thread/INFO]: JoePCool14[/108.79.4.225:52839] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:41:22] [Server thread/INFO]: JoePCool14[/108.79.4.225:59040] logged in with entity id 517 at (world, 181.7, 73, 100.7) +2015-06-29 [11:41:22] [Server thread/INFO]: Orthdntst_[/98.200.179.70:50473] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:41:23] [Server thread/INFO]: Orthdntst_[/98.200.179.70:37399] logged in with entity id 518 at (world, 128, 62, 128) +2015-06-29 [11:41:23] [Server thread/INFO]: Steve[/166.175.63.79:64693] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:41:23] [Server thread/INFO]: Steve[/50.153.50.255:3079] logged in with entity id 520 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:41:24] [Server thread/INFO]: [Server] please stay on +2015-06-29 [11:41:24] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:54433] logged out due to timeout +2015-06-29 [11:41:24] [Server thread/INFO]: Ghost10000[/75.166.54.109:52404] logged in with entity id 523 at (world, 128, 62, 128) +2015-06-29 [11:41:27] [Server thread/INFO]: [Server] also get any friends to join :) +2015-06-29 [11:41:28] [Server thread/INFO]: <3vandg> i assume nobody gets op +2015-06-29 [11:41:29] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:56450] logged in with entity id 527 at (world, 128, 62, 128) +2015-06-29 [11:41:29] [Server thread/INFO]: JoePCool14[/108.79.4.225:59040] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:41:29] [Server thread/INFO]: JoePCool14[/108.79.4.225:36387] logged in with entity id 529 at (world, 181.7, 73, 100.7) +2015-06-29 [11:41:29] [Server thread/INFO]: [Server] need to hit 100 players +2015-06-29 [11:41:31] [Server thread/INFO]: stop +2015-06-29 [11:41:32] [Server thread/NOTICE]: Player data not found for "whiztech", creating new profile +2015-06-29 [11:41:32] [Server thread/INFO]: Whiztech[/70.79.252.242:63985] logged in with entity id 532 at (world, 128, 62, 128) +2015-06-29 [11:41:34] [Server thread/INFO]: this is clanz beta +2015-06-29 [11:41:34] [Server thread/INFO]: LightningJulian[/74.90.100.55:43283] logged out due to timeout +2015-06-29 [11:41:35] [Server thread/NOTICE]: Player data not found for "white_hawk_7", creating new profile +2015-06-29 [11:41:35] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:39676] logged in with entity id 536 at (world, 128, 62, 128) +2015-06-29 [11:41:36] [Server thread/INFO]: or i will eat you +2015-06-29 [11:41:38] [Server thread/INFO]: ok server i got you +2015-06-29 [11:41:42] [Server thread/INFO]: TheOGPhoenix was slain by Charcoal_Inc +2015-06-29 [11:41:42] [Server thread/INFO]: Matamex[/24.1.176.231:58164] logged out due to timeout +2015-06-29 [11:41:45] [Server thread/INFO]: i am now op. +2015-06-29 [11:41:48] [Server thread/INFO]: full diam ameour +2015-06-29 [11:41:49] [Server thread/INFO]: <3vandg> can non staff join? +2015-06-29 [11:41:50] [Server thread/INFO]: what are we doing? +2015-06-29 [11:41:50] [Server thread/INFO]: lol yeah clanz +2015-06-29 [11:41:51] [Server thread/INFO]: Playastar[/96.38.8.62:59344] logged in with entity id 541 at (world, 128, 62, 128) +2015-06-29 [11:41:51] [Server thread/INFO]: LightningJulian[/74.90.100.55:34732] logged in with entity id 542 at (world, 128, 62, 128) +2015-06-29 [11:41:51] [Server thread/INFO]: Lpnt[/24.165.82.15:60201] logged out due to timeout +2015-06-29 [11:41:52] [Server thread/INFO]: Orthdntst_[/98.200.179.70:37399] logged out due to timeout +2015-06-29 [11:41:52] [Server thread/INFO]: gamesmasher413[/72.74.58.33:55548] logged out due to timeout +2015-06-29 [11:41:52] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [11:41:52] [Server thread/INFO]: PizzaMan319[/24.112.237.66:58147] logged out due to timeout +2015-06-29 [11:41:52] [Server thread/INFO]: ChuckNorris[/216.36.154.120:53219] logged out due to timeout +2015-06-29 [11:41:52] [Server thread/INFO]: JoePCool14[/108.79.4.225:36387] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:41:53] [Server thread/INFO]: JoePCool14[/108.79.4.225:59144] logged in with entity id 546 at (world, 181.7, 73, 100.7) +2015-06-29 [11:41:53] [Server thread/INFO]: Charcoal_Inc was slain by KCGraphics +2015-06-29 [11:41:54] [Server thread/INFO]: ChuckNorris[/216.36.154.120:53430] logged in with entity id 553 at (world, 141.3906, 64, 115.0458) +2015-06-29 [11:41:54] [Server thread/INFO]: ill get on with my tablet +2015-06-29 [11:41:55] [Server thread/INFO]: Block lag D: +2015-06-29 [11:41:55] [Server thread/INFO]: Orthdntst_[/98.200.179.70:59165] logged in with entity id 556 at (world, 128, 62, 128) +2015-06-29 [11:41:56] [Server thread/NOTICE]: Player data not found for "spencer_99", creating new profile +2015-06-29 [11:41:56] [Server thread/INFO]: Spencer_99[/75.133.165.213:54175] logged in with entity id 557 at (world, 128, 62, 128) +2015-06-29 [11:41:56] [Server thread/INFO]: chaseymichael left the game +2015-06-29 [11:41:56] [Server thread/INFO]: chaseymichael[/174.78.193.107:65217] logged out due to timeout +2015-06-29 [11:41:58] [Server thread/INFO]: Matamex[/24.1.176.231:59355] logged in with entity id 561 at (world, 128, 62, 128) +2015-06-29 [11:41:59] [Server thread/INFO]: Lpnt[/24.165.82.15:56571] logged in with entity id 563 at (world, 128, 62, 128) +2015-06-29 [11:42:00] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:56450] logged out due to timeout +2015-06-29 [11:42:02] [Server thread/INFO]: poop +2015-06-29 [11:42:03] [Server thread/INFO]: i got a sapling. Do i win? +2015-06-29 [11:42:05] [Server thread/INFO]: Snowballcps was slain by zaidynzm9527 +2015-06-29 [11:42:06] [Server thread/INFO]: xPixel was slain by KCGraphics +2015-06-29 [11:42:07] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:39676] logged out due to timeout +2015-06-29 [11:42:07] [Server thread/INFO]: xStar_89[/71.57.47.150:53191] logged out due to timeout +2015-06-29 [11:42:08] [Server thread/INFO]: 15Ibans[/72.91.34.54:34275] logged out due to timeout +2015-06-29 [11:42:08] [Server thread/INFO]: JoePCool14[/108.79.4.225:59144] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:42:09] [Server thread/INFO]: JoePCool14[/108.79.4.225:35096] logged in with entity id 566 at (world, 181.7, 73, 100.7) +2015-06-29 [11:42:10] [Server thread/INFO]: PizzaMan319[/24.112.237.66:57378] logged in with entity id 567 at (world, -42.8849, 74, 225.4941) +2015-06-29 [11:42:11] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:59094] logged in with entity id 569 at (world, 128, 62, 128) +2015-06-29 [11:42:12] [Server thread/INFO]: Charcoal_Inc was slain by zaidynzm9527 +2015-06-29 [11:42:13] [Server thread/INFO]: im from pmc. please present me with op. +2015-06-29 [11:42:15] [Server thread/INFO]: 15Ibans[/72.91.34.54:54380] logged in with entity id 572 at (world, 193.6524, 63, 131.3) +2015-06-29 [11:42:15] [Server thread/INFO]: chissling drowned +2015-06-29 [11:42:16] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:42:17] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:42:17] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [11:42:18] [Server thread/INFO]: FlippinPiggeh was slain by KCGraphics +2015-06-29 [11:42:19] [Server thread/INFO]: Tort[/99.182.2.129:65515] logged out due to timeout +2015-06-29 [11:42:20] [Server thread/INFO]: op plz i is from planet Minecraft +2015-06-29 [11:42:21] [Server thread/INFO]: Orthdntst_[/98.200.179.70:59165] logged out due to timeout +2015-06-29 [11:42:22] [Server thread/INFO]: chaseymichael[/174.78.193.107:55762] logged in with entity id 583 at (world, 139.431, 68, 167.6461) +2015-06-29 [11:42:23] [Server thread/NOTICE]: Player data not found for "naidemoc", creating new profile +2015-06-29 [11:42:23] [Server thread/INFO]: Naidemoc[/72.224.184.140:49325] logged in with entity id 585 at (world, 128, 62, 128) +2015-06-29 [11:42:24] [Server thread/INFO]: <3vandg> Chiss is this staff only? +2015-06-29 [11:42:24] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:8122] logged in with entity id 586 at (world, 128, 62, 128) +2015-06-29 [11:42:24] [Server thread/INFO]: Steve[/50.153.50.255:3079] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:42:24] [Server thread/INFO]: Steve[/99.36.110.119:60853] logged in with entity id 588 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:42:25] [Server thread/INFO]: xMatthew_ left the game +2015-06-29 [11:42:25] [Server thread/INFO]: xMatthew_[/24.118.114.215:52403] logged out due to client disconnect +2015-06-29 [11:42:29] [Server thread/INFO]: Scharf was slain by KCGraphics +2015-06-29 [11:42:30] [Server thread/NOTICE]: Player data not found for "ton", creating new profile +2015-06-29 [11:42:30] [Server thread/INFO]: Ton[/99.117.132.36:56019] logged in with entity id 595 at (world, 128, 62, 128) +2015-06-29 [11:42:30] [Server thread/INFO]: 15Ibans[/72.91.34.54:54380] logged out due to timeout +2015-06-29 [11:42:31] [Server thread/INFO]: KCGraphics was slain by zaidynzm9527 +2015-06-29 [11:42:31] [Server thread/NOTICE]: Player data not found for "tealeclipse", creating new profile +2015-06-29 [11:42:31] [Server thread/INFO]: TealEclipse[/107.5.212.176:57950] logged in with entity id 603 at (world, 128, 62, 128) +2015-06-29 [11:42:32] [Server thread/INFO]: Orthdntst_[/98.200.179.70:45599] logged in with entity id 605 at (world, 128, 62, 128) +2015-06-29 [11:42:33] [Server thread/INFO]: boo2300[/108.200.60.123:62034] logged out due to timeout +2015-06-29 [11:42:35] [Server thread/INFO]: boo2300[/108.200.60.123:61408] logged in with entity id 606 at (world, 71.4636, 68.0549, 64.842) +2015-06-29 [11:42:35] [Server thread/INFO]: [Server] na +2015-06-29 [11:42:36] [Server thread/INFO]: * BreadDubbs is bae +2015-06-29 [11:42:36] [Server thread/INFO]: 221B was slain by ironmanmatt2000 +2015-06-29 [11:42:37] [Server thread/INFO]: [Server] anyone can join +2015-06-29 [11:42:39] [Server thread/INFO]: Pyzen[/108.81.233.128:60809] logged in with entity id 608 at (world, 128, 62, 128) +2015-06-29 [11:42:41] [Server thread/INFO]: [Server] need 100 +2015-06-29 [11:42:41] [Server thread/INFO]: PizzaMan319[/24.112.237.66:57378] logged out due to timeout +2015-06-29 [11:42:42] [Server thread/INFO]: crafterthatcraft left the game +2015-06-29 [11:42:42] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:61004] logged out due to timeout +2015-06-29 [11:42:42] [Server thread/INFO]: [Server] gogogogo +2015-06-29 [11:42:43] [Server thread/INFO]: Jlogaming[/104.235.41.90:64762] logged out due to timeout +2015-06-29 [11:42:43] [Server thread/INFO]: St3ven_ was slain by zaidynzm9527 +2015-06-29 [11:42:44] [Server thread/INFO]: PizzaMan319[/24.112.237.66:50477] logged in with entity id 609 at (world, -42.8849, 74, 225.4941) +2015-06-29 [11:42:44] [Server thread/INFO]: TheMegaTony[/78.1.31.84:52361] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:42:44] [Server thread/INFO]: TheMegaTony[/78.1.31.84:51874] logged in with entity id 610 at (world, 128, 62, 128) +2015-06-29 [11:42:45] [Server thread/NOTICE]: Player data not found for "mystiqueyq", creating new profile +2015-06-29 [11:42:45] [Server thread/INFO]: MystiQueyQ[/99.140.165.230:58506] logged in with entity id 611 at (world, 128, 62, 128) +2015-06-29 [11:42:46] [Server thread/INFO]: SvenIsMyMentor<3[/184.163.201.200:60869] logged out due to Invalid name! +2015-06-29 [11:42:46] [Server thread/INFO]: St3ven_ left the game +2015-06-29 [11:42:46] [Server thread/INFO]: St3ven_[/98.145.26.69:65112] logged out due to client disconnect +2015-06-29 [11:42:46] [Server thread/INFO]: I can't break stone +2015-06-29 [11:42:47] [Server thread/INFO]: * TheOGPhoenix hi +2015-06-29 [11:42:48] [Server thread/INFO]: chaseymichael[/174.78.193.107:55762] logged out due to timeout +2015-06-29 [11:42:49] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:64511] logged in with entity id 612 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:42:51] [Server thread/INFO]: ans +2015-06-29 [11:42:51] [Server thread/INFO]: Steve[/99.36.110.119:60853] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:42:51] [Server thread/INFO]: Steve[/168.18.176.15:50114] logged in with entity id 613 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:42:51] [Server thread/NOTICE]: Player data not found for "flourburgerbear", creating new profile +2015-06-29 [11:42:52] [Server thread/INFO]: Flourburgerbear[/50.153.50.255:3082] logged in with entity id 614 at (world, 128, 62, 128) +2015-06-29 [11:42:52] [Server thread/INFO]: mojangpvp[/173.63.124.207:64667] logged out due to timeout +2015-06-29 [11:42:53] [Server thread/INFO]: xPixel was slain by zaidynzm9527 +2015-06-29 [11:42:53] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:8122] logged out due to timeout +2015-06-29 [11:42:56] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:55547] logged in with entity id 616 at (world, 128, 62, 128) +2015-06-29 [11:42:56] [Server thread/INFO]: xRambo was slain by Charcoal_Inc +2015-06-29 [11:43:00] [Server thread/NOTICE]: Player data not found for "arcticzeroo", creating new profile +2015-06-29 [11:43:00] [Server thread/INFO]: ArcticZeroo[/68.32.132.196:56094] logged in with entity id 618 at (world, 128, 62, 128) +2015-06-29 [11:43:00] [Server thread/INFO]: Jlogaming[/104.235.41.90:62217] logged in with entity id 619 at (world, 128, 62, 128) +2015-06-29 [11:43:02] [Server thread/INFO]: Orthdntst_[/98.200.179.70:45599] logged out due to timeout +2015-06-29 [11:43:02] [Server thread/INFO]: gr8p was slain by zaidynzm9527 +2015-06-29 [11:43:03] [Server thread/INFO]: Playastar[/96.38.8.62:59344] logged out due to timeout +2015-06-29 [11:43:03] [Server thread/INFO]: LightningJulian[/74.90.100.55:34732] logged out due to timeout +2015-06-29 [11:43:03] [Server thread/NOTICE]: Player data not found for "immovable", creating new profile +2015-06-29 [11:43:03] [Server thread/INFO]: Immovable[/184.163.201.200:56342] logged in with entity id 626 at (world, 128, 62, 128) +2015-06-29 [11:43:05] [Server thread/INFO]: Ton[/99.117.132.36:56019] logged out due to timeout +2015-06-29 [11:43:07] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:59094] logged out due to timeout +2015-06-29 [11:43:07] [Server thread/INFO]: TheOGPhoenix was slain by zaidynzm9527 +2015-06-29 [11:43:08] [Server thread/INFO]: atop +2015-06-29 [11:43:08] [Server thread/INFO]: bagel[/104.55.196.27:60487] logged out due to timeout +2015-06-29 [11:43:08] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:54812] logged in with entity id 633 at (world, 128, 62, 128) +2015-06-29 [11:43:08] [Server thread/INFO]: Spencer_99[/75.133.165.213:54175] logged out due to timeout +2015-06-29 [11:43:08] [Server thread/INFO]: im very lost i swam far away +2015-06-29 [11:43:09] [Server thread/INFO]: Ton[/99.117.132.36:55665] logged in with entity id 634 at (world, 128, 62, 128) +2015-06-29 [11:43:10] [Server thread/INFO]: stop +2015-06-29 [11:43:11] [Server thread/INFO]: Jlogaming[/104.235.41.90:62217] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:43:11] [Server thread/INFO]: Jlogaming[/104.235.41.90:49239] logged in with entity id 635 at (world, 128, 62, 128) +2015-06-29 [11:43:11] [Server thread/INFO]: mojangpvp[/173.63.124.207:58585] logged in with entity id 636 at (world, 113.5796, 69, 76.6632) +2015-06-29 [11:43:12] [Server thread/INFO]: FlippinPiggeh was slain by zaidynzm9527 +2015-06-29 [11:43:15] [Server thread/NOTICE]: Player data not found for "edgardme3", creating new profile +2015-06-29 [11:43:15] [Server thread/INFO]: edgardme3[/74.194.110.14:45580] logged in with entity id 637 at (world, 128, 62, 128) +2015-06-29 [11:43:15] [Server thread/INFO]: 15Ibans[/72.91.34.54:51701] logged in with entity id 638 at (world, 193.6524, 63, 131.3) +2015-06-29 [11:43:17] [Server thread/INFO]: Ghost10000[/75.166.54.109:52404] logged out due to timeout +2015-06-29 [11:43:18] [Server thread/INFO]: Steve[/168.18.176.15:50114] logged out due to timeout +2015-06-29 [11:43:19] [Server thread/INFO]: hacker you have full dia +2015-06-29 [11:43:19] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:64511] logged out due to timeout +2015-06-29 [11:43:19] [Server thread/INFO]: bagel[/104.55.196.27:53977] logged in with entity id 639 at (world, 128, 62, 128) +2015-06-29 [11:43:21] [Server thread/INFO]: Spencer_99[/75.133.165.213:59536] logged in with entity id 640 at (world, 128, 62, 128) +2015-06-29 [11:43:21] [Server thread/INFO]: ironmanmatt2000 was slain by zaidynzm9527 +2015-06-29 [11:43:24] [Server thread/INFO]: TBRFLUFFY[/45.50.23.11:63422] logged out due to timeout +2015-06-29 [11:43:25] [Server thread/INFO]: omg just stop +2015-06-29 [11:43:27] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:52384] logged in with entity id 641 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:43:29] [Server thread/INFO]: Lpnt[/24.165.82.15:56571] logged out due to timeout +2015-06-29 [11:43:31] [Server thread/NOTICE]: Player data not found for "xpukey", creating new profile +2015-06-29 [11:43:31] [Server thread/INFO]: xPukey[/99.36.110.119:65382] logged in with entity id 642 at (world, 128, 62, 128) +2015-06-29 [11:43:33] [Server thread/NOTICE]: Player data not found for "graphic", creating new profile +2015-06-29 [11:43:33] [Server thread/INFO]: Graphic[/168.18.176.15:43980] logged in with entity id 643 at (world, 128, 62, 128) +2015-06-29 [11:43:35] [Server thread/INFO]: TheOGPhoenix was slain by zaidynzm9527 +2015-06-29 [11:43:35] [Server thread/INFO]: biohazard_[/76.16.212.5:50065] logged out due to timeout +2015-06-29 [11:43:37] [Server thread/INFO]: xRambo was slain by zaidynzm9527 +2015-06-29 [11:43:41] [Server thread/INFO]: Chiss, make an announcement on the network. We'll get 100 really fast +2015-06-29 [11:43:42] [Server thread/INFO]: i killed chiss +2015-06-29 [11:43:42] [Server thread/INFO]: Lpnt[/24.165.82.15:58940] logged in with entity id 648 at (world, 128, 62, 128) +2015-06-29 [11:43:44] [Server thread/INFO]: he had it +2015-06-29 [11:43:47] [Server thread/INFO]: get him +2015-06-29 [11:43:47] [Server thread/INFO]: JoeSwanson was slain by zaidynzm9527 +2015-06-29 [11:43:48] [Server thread/INFO]: stop +2015-06-29 [11:43:50] [Server thread/INFO]: Charcoal_Inc was slain by zaidynzm9527 +2015-06-29 [11:43:50] [Server thread/INFO]: now +2015-06-29 [11:43:54] [Server thread/INFO]: [Server] 54/100 +2015-06-29 [11:43:55] [Server thread/INFO]: bagel[/104.55.196.27:53977] logged out due to timeout +2015-06-29 [11:43:57] [Server thread/INFO]: [Server] need 46 more +2015-06-29 [11:43:57] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:52211] logged in with entity id 660 at (world, 128, 62, 128) +2015-06-29 [11:44:00] [Server thread/INFO]: [Server] please get your friends in here :) +2015-06-29 [11:44:03] [Server thread/INFO]: LightningJulian[/74.90.100.55:43978] logged in with entity id 661 at (world, 128, 62, 128) +2015-06-29 [11:44:06] [Server thread/INFO]: chunks take a long time to load out here +2015-06-29 [11:44:07] [Server thread/INFO]: Scharf was slain by ironmanmatt2000 +2015-06-29 [11:44:08] [Server thread/INFO]: Tort[/99.182.2.129:57976] logged in with entity id 672 at (world, 128, 62, 128) +2015-06-29 [11:44:09] [Server thread/INFO]: Orthdntst_[/98.200.179.70:40388] logged in with entity id 675 at (world, 128, 62, 128) +2015-06-29 [11:44:11] [Server thread/INFO]: Am I the only one who's doing legit survival +2015-06-29 [11:44:12] [Server thread/INFO]: zaidynzm9527 was slain by TheOGPhoenix +2015-06-29 [11:44:15] [Server thread/INFO]: xStar_89[/71.57.47.150:62396] logged in with entity id 708 at (world, 161.016, 70, 116.4202) +2015-06-29 [11:44:15] [Server thread/INFO]: <3vandg> Posted on my wall +2015-06-29 [11:44:17] [Server thread/INFO]: gg +2015-06-29 [11:44:18] [Server thread/INFO]: no +2015-06-29 [11:44:21] [Server thread/INFO]: Nickel_ joined the game +2015-06-29 [11:44:22] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [11:44:22] [Server thread/INFO]: PyxlnotSteve joined the game +2015-06-29 [11:44:22] [Server thread/INFO]: SophiaRose joined the game +2015-06-29 [11:44:22] [Server thread/INFO]: ZexhL joined the game +2015-06-29 [11:44:22] [Server thread/INFO]: xStrafePvPz_ joined the game +2015-06-29 [11:44:22] [Server thread/INFO]: Fungames300 joined the game +2015-06-29 [11:44:23] [Server thread/INFO]: KCGraphics was slain by TheOGPhoenix +2015-06-29 [11:44:33] [Server thread/INFO]: Put it on the forums? +2015-06-29 [11:44:38] [Server thread/INFO]: [Server] no +2015-06-29 [11:44:38] [Server thread/INFO]: gamesmasher413[/72.74.58.33:59777] logged in with entity id 715 at (world, 128, 62, 128) +2015-06-29 [11:44:40] [Server thread/INFO]: [Server] not forums +2015-06-29 [11:44:43] [Server thread/INFO]: xPukey[/99.36.110.119:65382] logged out due to timeout +2015-06-29 [11:44:43] [Server thread/INFO]: edgardme3[/74.194.110.14:45580] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:44:43] [Server thread/INFO]: edgardme3[/74.194.110.14:58486] logged in with entity id 720 at (world, 128, 62, 128) +2015-06-29 [11:44:48] [Server thread/INFO]: Pyzen[/108.81.233.128:60809] logged out due to timeout +2015-06-29 [11:44:49] [Server thread/INFO]: laggkngggg +2015-06-29 [11:44:49] [Server thread/INFO]: xStrafePvPz_ drowned +2015-06-29 [11:44:49] [Server thread/INFO]: ThNks Chiss for the reminder that i needed to leave Helper announcements from 10 years ago. +2015-06-29 [11:44:50] [Server thread/INFO]: Whiztech joined the game +2015-06-29 [11:44:50] [Server thread/INFO]: ChuckNorris joined the game +2015-06-29 [11:44:50] [Server thread/INFO]: Matamex joined the game +2015-06-29 [11:44:50] [Server thread/INFO]: JoePCool14 joined the game +2015-06-29 [11:44:50] [Server thread/INFO]: Naidemoc joined the game +2015-06-29 [11:44:50] [Server thread/INFO]: TealEclipse joined the game +2015-06-29 [11:44:50] [Server thread/INFO]: boo2300 joined the game +2015-06-29 [11:44:52] [Server thread/INFO]: 3vang delete it tgeb +2015-06-29 [11:44:54] [Server thread/INFO]: Pyzen[/108.81.233.128:57632] logged in with entity id 729 at (world, 128, 62, 128) +2015-06-29 [11:44:55] [Server thread/INFO]: biohazard_[/76.16.212.5:52524] logged in with entity id 730 at (world, 128, 62, 128) +2015-06-29 [11:44:55] [Server thread/INFO]: gamesmasher413[/72.74.58.33:59777] logged out due to timeout +2015-06-29 [11:44:56] [Server thread/INFO]: Oh hi everyone +2015-06-29 [11:44:57] [Server thread/INFO]: heyyyyyyyy +2015-06-29 [11:45:04] [Server thread/INFO]: <3vandg> Gotten rid of +2015-06-29 [11:45:04] [Server thread/INFO]: chissling was slain by ironmanmatt2000 +2015-06-29 [11:45:06] [Server thread/INFO]: Jlogaming[/104.235.41.90:49239] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:45:06] [Server thread/INFO]: Jlogaming[/104.235.41.90:60723] logged in with entity id 737 at (world, 128, 62, 128) +2015-06-29 [11:45:09] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:52211] logged out due to timeout +2015-06-29 [11:45:09] [Server thread/INFO]: go on real mineplex and launch an announcement +2015-06-29 [11:45:12] [Server thread/NOTICE]: Player data not found for "phinary", creating new profile +2015-06-29 [11:45:12] [Server thread/INFO]: Phinary[/50.72.112.117:64076] logged in with entity id 739 at (world, 128, 62, 128) +2015-06-29 [11:45:13] [Server thread/NOTICE]: Player data not found for "jonathan2907", creating new profile +2015-06-29 [11:45:13] [Server thread/INFO]: Jonathan2907[/68.196.163.172:49408] logged in with entity id 740 at (world, 128, 62, 128) +2015-06-29 [11:45:15] [Server thread/INFO]: [CONSOLE: Reloading server...] +2015-06-29 [11:45:15] [Server thread/INFO]: Saving levels... +2015-06-29 [11:45:16] [Server thread/INFO]: Reloading properties... +2015-06-29 [11:45:16] [Server thread/INFO]: [CONSOLE: Reload complete.] +2015-06-29 [11:45:19] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:28270] logged in with entity id 742 at (world, 128, 62, 128) +2015-06-29 [11:45:20] [Server thread/INFO]: I am unable to break cobblestone +2015-06-29 [11:45:23] [Server thread/INFO]: mikelikesmuffins drowned +2015-06-29 [11:45:23] [Server thread/INFO]: Immovable[/184.163.201.200:56342] logged out due to timeout +2015-06-29 [11:45:24] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [11:45:24] [Server thread/INFO]: sup +2015-06-29 [11:45:26] [Server thread/INFO]: i have full dia now +2015-06-29 [11:45:28] [Server thread/INFO]: Naidemoc drowned +2015-06-29 [11:45:28] [Server thread/INFO]: [Server] pvp off +2015-06-29 [11:45:29] [Server thread/INFO]: test +2015-06-29 [11:45:35] [Server thread/INFO]: <3vandg> Thanks +2015-06-29 [11:45:40] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:55547] logged out due to timeout +2015-06-29 [11:45:40] [Server thread/INFO]: Color codes dont work :p +2015-06-29 [11:45:43] [Server thread/INFO]: [Server] i task you all +2015-06-29 [11:45:46] [Server thread/INFO]: [Server] to build a bridge out to spawn +2015-06-29 [11:45:48] [Server thread/INFO]: boo2300 left the game +2015-06-29 [11:45:48] [Server thread/INFO]: boo2300[/108.200.60.123:61408] logged out due to timeout +2015-06-29 [11:45:48] [Server thread/INFO]: [Server] :) +2015-06-29 [11:45:50] [Server thread/INFO]: oooo +2015-06-29 [11:45:53] [Server thread/INFO]: [Server] YOU CAN DO IT +2015-06-29 [11:45:53] [Server thread/INFO]: Hi +2015-06-29 [11:45:55] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:52384] logged out due to timeout +2015-06-29 [11:45:59] [Server thread/INFO]: where is spawn +2015-06-29 [11:45:59] [Server thread/INFO]: Naidemoc drowned +2015-06-29 [11:46:01] [Server thread/INFO]: but chiss +2015-06-29 [11:46:03] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:51822] logged in with entity id 778 at (world, 128, 62, 128) +2015-06-29 [11:46:03] [Server thread/INFO]: op? +2015-06-29 [11:46:04] [Server thread/INFO]: we can +2015-06-29 [11:46:05] [Server thread/INFO]: Snowballcps left the game +2015-06-29 [11:46:05] [Server thread/INFO]: Snowballcps[/98.178.137.183:50927] logged out due to client disconnect +2015-06-29 [11:46:07] [Server thread/INFO]: yes i can +2015-06-29 [11:46:09] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:59361] logged in with entity id 788 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:46:09] [Server thread/INFO]: [Server] and build a statue of chiss cos why not +2015-06-29 [11:46:10] [Server thread/INFO]: TheMegaTony joined the game +2015-06-29 [11:46:10] [Server thread/INFO]: MystiQueyQ joined the game +2015-06-29 [11:46:10] [Server thread/INFO]: Flourburgerbear joined the game +2015-06-29 [11:46:11] [Server thread/INFO]: ArcticZeroo joined the game +2015-06-29 [11:46:11] [Server thread/INFO]: White_Hawk_7 joined the game +2015-06-29 [11:46:11] [Server thread/INFO]: Ton joined the game +2015-06-29 [11:46:11] [Server thread/INFO]: mojangpvp[/173.63.124.207:58585] logged out due to timeout +2015-06-29 [11:46:14] [Server thread/INFO]: dont let dreams be dreams!! +2015-06-29 [11:46:17] [Server thread/INFO]: im likw 2000 blocks away already +2015-06-29 [11:46:17] [Server thread/INFO]: mojangpvp[/173.63.124.207:59492] logged in with entity id 805 at (world, 113.5796, 69, 76.6632) +2015-06-29 [11:46:18] [Server thread/INFO]: Snowballcps[/98.178.137.183:53893] logged in with entity id 806 at (world, 116.7, 66, 172.3) +2015-06-29 [11:46:19] [Server thread/INFO]: I have a legit skin +2015-06-29 [11:46:21] [Server thread/INFO]: LightningJulian[/74.90.100.55:43978] logged out due to timeout +2015-06-29 [11:46:24] [Server thread/INFO]: got in! +2015-06-29 [11:46:24] [Server thread/INFO]: the diabetus compells you. +2015-06-29 [11:46:28] [Server thread/INFO]: LightningJulian[/74.90.100.55:34408] logged in with entity id 834 at (world, 128, 62, 128) +2015-06-29 [11:46:35] [Server thread/INFO]: how do i sprint xD +2015-06-29 [11:46:38] [Server thread/INFO]: Immovable[/184.163.201.200:55991] logged in with entity id 852 at (world, 128, 62, 128) +2015-06-29 [11:46:38] [Server thread/INFO]: Snowballcps[/98.178.137.183:53893] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:46:38] [Server thread/INFO]: Snowballcps[/98.178.137.183:57760] logged in with entity id 853 at (world, 116.7, 66, 172.3) +2015-06-29 [11:46:40] [Server thread/INFO]: cant +2015-06-29 [11:46:43] [Server thread/INFO]: ^ +2015-06-29 [11:46:46] [Server thread/INFO]: ^^ +2015-06-29 [11:46:46] [Server thread/INFO]: Nomsprint +2015-06-29 [11:46:47] [Server thread/INFO]: crap +2015-06-29 [11:46:49] [Server thread/INFO]: how do i minecraft +2015-06-29 [11:46:53] [Server thread/INFO]: No Sprint on PE +2015-06-29 [11:46:53] [Server thread/INFO]: PizzaMan319 drowned +2015-06-29 [11:46:55] [Server thread/INFO]: [Server] would be nice to be able to make chat a bit smaller :\ +2015-06-29 [11:46:56] [Server thread/INFO]: Phinary[/50.72.112.117:64076] logged out due to timeout +2015-06-29 [11:46:58] [Server thread/INFO]: spawn prot +2015-06-29 [11:46:59] [Server thread/INFO]: Mike my love <2 +2015-06-29 [11:47:00] [Server thread/INFO]: ik +2015-06-29 [11:47:01] [Server thread/INFO]: IKR +2015-06-29 [11:47:03] [Server thread/INFO]: how do i get back home +2015-06-29 [11:47:04] [Server thread/INFO]: Chiss +2015-06-29 [11:47:05] [Server thread/INFO]: Jlogaming[/104.235.41.90:60723] logged out due to timeout +2015-06-29 [11:47:08] [Server thread/INFO]: how do i lyfe? +2015-06-29 [11:47:10] [Server thread/INFO]: Jlogaming[/104.235.41.90:57005] logged in with entity id 921 at (world, 128, 62, 128) +2015-06-29 [11:47:13] [Server thread/INFO]: Phinary[/50.72.112.117:58220] logged in with entity id 925 at (world, 128, 62, 128) +2015-06-29 [11:47:13] [Server thread/INFO]: u can turn it off +2015-06-29 [11:47:14] [Server thread/NOTICE]: Player data not found for "adamaxeman", creating new profile +2015-06-29 [11:47:14] [Server thread/INFO]: AdamAxeman[/60.241.103.8:51917] logged in with entity id 928 at (world, 128, 62, 128) +2015-06-29 [11:47:21] [Server thread/INFO]: enable pvp +2015-06-29 [11:47:26] [Server thread/INFO]: why cant inget covble +2015-06-29 [11:47:27] [Server thread/INFO]: hell no +2015-06-29 [11:47:29] [Server thread/INFO]: LightningJulian[/74.90.100.55:34408] logged out due to timeout +2015-06-29 [11:47:29] [Server thread/INFO]: Sl, what is this server? xD +2015-06-29 [11:47:29] [Server thread/INFO]: Carson left the game +2015-06-29 [11:47:29] [Server thread/INFO]: Carson[/24.67.112.135:53199] logged out due to timeout +2015-06-29 [11:47:30] [Server thread/INFO]: Jonathan2907[/68.196.163.172:49408] logged out due to timeout +2015-06-29 [11:47:31] [Server thread/INFO]: So +2015-06-29 [11:47:34] [Server thread/INFO]: it looks like there is lots of lag +2015-06-29 [11:47:37] [Server thread/INFO]: LightningJulian[/74.90.100.55:47814] logged in with entity id 950 at (world, 128, 62, 128) +2015-06-29 [11:47:39] [Server thread/INFO]: Immovable[/184.163.201.200:55991] logged out due to timeout +2015-06-29 [11:47:41] [Server thread/INFO]: ChuckNorris left the game +2015-06-29 [11:47:41] [Server thread/INFO]: ChuckNorris[/216.36.154.120:53430] logged out due to client disconnect +2015-06-29 [11:47:43] [Server thread/INFO]: TealEclipse left the game +2015-06-29 [11:47:43] [Server thread/INFO]: TealEclipse[/107.5.212.176:57950] logged out due to client disconnect +2015-06-29 [11:47:46] [Server thread/INFO]: …I can make my chat small... +2015-06-29 [11:47:46] [Server thread/INFO]: Ghost10000[/75.166.54.109:61046] logged in with entity id 955 at (world, 128, 62, 128) +2015-06-29 [11:47:46] [Server thread/NOTICE]: Player data not found for "hybalt", creating new profile +2015-06-29 [11:47:46] [Server thread/INFO]: Hybalt[/68.196.163.172:56039] logged in with entity id 957 at (world, 128, 62, 128) +2015-06-29 [11:47:47] [Server thread/INFO]: Snowballcps[/98.178.137.183:57760] logged out due to timeout +2015-06-29 [11:47:47] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:28270] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:47:47] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:7525] logged in with entity id 959 at (world, 128, 62, 128) +2015-06-29 [11:47:49] [Server thread/INFO]: Pyzen[/108.81.233.128:57632] logged out due to timeout +2015-06-29 [11:47:49] [Server thread/INFO]: Snowballcps[/98.178.137.183:63333] logged in with entity id 960 at (world, 116.7, 66, 172.3) +2015-06-29 [11:47:51] [Server thread/INFO]: i am swag +2015-06-29 [11:47:53] [Server thread/INFO]: Pyzen[/108.81.233.128:51988] logged in with entity id 970 at (world, 128, 62, 128) +2015-06-29 [11:47:54] [Server thread/INFO]: <3vandg> This is stress testing. +2015-06-29 [11:47:54] [Server thread/INFO]: ΔΔΔme too +2015-06-29 [11:47:57] [Server thread/INFO]: Steve[/70.209.137.205:4141] logged in with entity id 978 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:47:58] [Server thread/INFO]: O sup +2015-06-29 [11:47:58] [Server thread/INFO]: <3vandg> hax +2015-06-29 [11:47:58] [Server thread/INFO]: LOL its so tiny +2015-06-29 [11:48:02] [Server thread/INFO]: Ghost10000[/75.166.54.109:61046] logged out due to timeout +2015-06-29 [11:48:04] [Server thread/INFO]: 221B left the game +2015-06-29 [11:48:04] [Server thread/INFO]: 221B[/76.114.51.74:63363] logged out due to timeout +2015-06-29 [11:48:05] [Server thread/INFO]: boo2300[/108.200.60.123:53938] logged in with entity id 994 at (world, 71.4636, 68.0549, 64.842) +2015-06-29 [11:48:05] [Server thread/NOTICE]: Player data not found for "test", creating new profile +2015-06-29 [11:48:05] [Server thread/INFO]: test[/75.166.54.109:58692] logged in with entity id 996 at (world, 128, 62, 128) +2015-06-29 [11:48:07] [Server thread/INFO]: [Server] what device you all playing on? +2015-06-29 [11:48:11] [Server thread/INFO]: ️️️️️️️️️️️️️❔❔❌ +2015-06-29 [11:48:11] [Server thread/INFO]: [Server] im on a ipad air 2 +2015-06-29 [11:48:12] [Server thread/INFO]: AdamAxeman[/60.241.103.8:51917] logged out due to timeout +2015-06-29 [11:48:12] [Server thread/INFO]: AdamAxeman[/60.241.103.8:56877] logged in with entity id 1007 at (world, 128, 62, 128) +2015-06-29 [11:48:13] [Server thread/INFO]: iphone +2015-06-29 [11:48:14] [Server thread/INFO]: Android tablet +2015-06-29 [11:48:14] [Server thread/INFO]: androis +2015-06-29 [11:48:15] [Server thread/INFO]: nook tablet +2015-06-29 [11:48:15] [Server thread/INFO]: ipad +2015-06-29 [11:48:15] [Server thread/INFO]: ipod +2015-06-29 [11:48:15] [Server thread/INFO]: iphone 5S +2015-06-29 [11:48:15] [Server thread/INFO]: iPad Air +2015-06-29 [11:48:15] [Server thread/INFO]: IOS IPAD AIR 2 +2015-06-29 [11:48:15] [Server thread/INFO]: iphone 6 +2015-06-29 [11:48:16] [Server thread/INFO]: GSmash[/72.74.58.33:49218] logged in with entity id 1009 at (world, 187.3257, 78, 96.9568) +2015-06-29 [11:48:16] [Server thread/INFO]: how2play iphone 5 +2015-06-29 [11:48:17] [Server thread/INFO]: 5s +2015-06-29 [11:48:17] [Server thread/INFO]: iphone 5c +2015-06-29 [11:48:18] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:7525] logged out due to timeout +2015-06-29 [11:48:18] [Server thread/INFO]: <3vandg> iPhone 5C +2015-06-29 [11:48:18] [Server thread/INFO]: boo2300[/108.200.60.123:53938] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:48:18] [Server thread/INFO]: boo2300[/108.200.60.123:55979] logged in with entity id 1010 at (world, 71.4636, 68.0549, 64.842) +2015-06-29 [11:48:18] [Server thread/INFO]: shield tablet +2015-06-29 [11:48:18] [Server thread/INFO]: i pjonee +2015-06-29 [11:48:19] [Server thread/INFO]: andrios +2015-06-29 [11:48:19] [Server thread/INFO]: Lumia 521 :P +2015-06-29 [11:48:21] [Server thread/INFO]: [Server] sheesh +2015-06-29 [11:48:21] [Server thread/INFO]: iphone 4s +2015-06-29 [11:48:21] [Server thread/INFO]: Mind the spam plz +2015-06-29 [11:48:21] [Server thread/INFO]: Phinary[/50.72.112.117:58220] logged out due to timeout +2015-06-29 [11:48:22] [Server thread/INFO]: IPad3 +2015-06-29 [11:48:22] [Server thread/INFO]: ipod touch +2015-06-29 [11:48:23] [Server thread/NOTICE]: Player data not found for "codename", creating new profile +2015-06-29 [11:48:23] [Server thread/INFO]: CodeName[/24.45.209.193:59147] logged in with entity id 1012 at (world, 128, 62, 128) +2015-06-29 [11:48:23] [Server thread/INFO]: ipad .,;,;,. +2015-06-29 [11:48:24] [Server thread/INFO]: iphone 6 +2015-06-29 [11:48:24] [Server thread/INFO]: [Server] must be tiny on iphones :P +2015-06-29 [11:48:25] [Server thread/INFO]: android +2015-06-29 [11:48:26] [Server thread/INFO]: test[/75.166.54.109:58692] logged out due to timeout +2015-06-29 [11:48:28] [Server thread/INFO]: iPhone 5s +2015-06-29 [11:48:28] [Server thread/NOTICE]: Player data not found for "thejoshxgames", creating new profile +2015-06-29 [11:48:28] [Server thread/INFO]: TheJoshXGames[/69.127.97.90:63810] logged in with entity id 1015 at (world, 128, 62, 128) +2015-06-29 [11:48:29] [Server thread/INFO]: iPhone 5 iOS 8.1 +2015-06-29 [11:48:29] [Server thread/INFO]: GSmash[/72.74.58.33:49218] logged out due to timeout +2015-06-29 [11:48:30] [Server thread/NOTICE]: Player data not found for "shaun", creating new profile +2015-06-29 [11:48:30] [Server thread/INFO]: shaun[/50.72.112.117:57728] logged in with entity id 1016 at (world, 128, 62, 128) +2015-06-29 [11:48:31] [Server thread/INFO]: Android galaxy s4 +2015-06-29 [11:48:31] [Server thread/NOTICE]: Player data not found for "bro_yoshi", creating new profile +2015-06-29 [11:48:31] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:49437] logged in with entity id 1018 at (world, 128, 62, 128) +2015-06-29 [11:48:32] [Server thread/INFO]: Lol the spam +2015-06-29 [11:48:33] [Server thread/INFO]: Yup +2015-06-29 [11:48:33] [Server thread/INFO]: 221B[/76.114.51.74:49745] logged in with entity id 1021 at (world, 331.607, 71, 184.749) +2015-06-29 [11:48:33] [Server thread/INFO]: edgardme3[/74.194.110.14:58486] logged out due to timeout +2015-06-29 [11:48:34] [Server thread/INFO]: u thought +2015-06-29 [11:48:34] [Server thread/INFO]: Really hard. ;-; +2015-06-29 [11:48:35] [Server thread/NOTICE]: Player data not found for "_asuna_", creating new profile +2015-06-29 [11:48:35] [Server thread/INFO]: _Asuna_[/24.159.18.177:59460] logged in with entity id 1027 at (world, 128, 62, 128) +2015-06-29 [11:48:35] [Server thread/INFO]: ikr iphonesr bad +2015-06-29 [11:48:36] [Server thread/INFO]: Hybalt[/68.196.163.172:56039] logged out due to timeout +2015-06-29 [11:48:36] [Server thread/INFO]: naw tablet :3 +2015-06-29 [11:48:37] [Server thread/INFO]: Hybalt[/68.196.163.172:58014] logged in with entity id 1034 at (world, 128, 62, 128) +2015-06-29 [11:48:39] [Server thread/INFO]: HTC One M8, getting my phone and tablet going in a bit +2015-06-29 [11:48:40] [Server thread/INFO]: ./p everyone Spam [PE] +2015-06-29 [11:48:41] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:51822] logged out due to timeout +2015-06-29 [11:48:44] [Server thread/INFO]: … +2015-06-29 [11:48:45] [Server thread/INFO]: <3vandg> i cant type on my phone +2015-06-29 [11:48:47] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:58777] logged in with entity id 1046 at (world, 128, 62, 128) +2015-06-29 [11:48:47] [Server thread/INFO]: I'd imagine PvPing on phones +2015-06-29 [11:48:48] [Server thread/NOTICE]: Player data not found for "impulse", creating new profile +2015-06-29 [11:48:48] [Server thread/INFO]: Impulse[/118.211.102.28:55435] logged in with entity id 1049 at (world, 128, 62, 128) +2015-06-29 [11:48:50] [Server thread/INFO]: I mean you can buy me an ipad if youd like. +2015-06-29 [11:48:51] [Server thread/INFO]: +2015-06-29 [11:48:51] [Server thread/INFO]: I'm the only one on a windows phone? ^^ +2015-06-29 [11:48:51] [Server thread/INFO]: chiss turn regen on +2015-06-29 [11:48:56] [Server thread/INFO]: <3vandg> on mc at least +2015-06-29 [11:48:56] [Server thread/INFO]: Steve[/70.209.137.205:4141] logged out due to timeout +2015-06-29 [11:48:58] [Server thread/INFO]: Jlogaming[/104.235.41.90:57005] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:48:58] [Server thread/INFO]: Jlogaming[/104.235.41.90:65474] logged in with entity id 1067 at (world, 128, 62, 128) +2015-06-29 [11:49:02] [Server thread/INFO]: pheonxi +2015-06-29 [11:49:02] [Server thread/INFO]: Snowballcps[/98.178.137.183:63333] logged out due to timeout +2015-06-29 [11:49:02] [Server thread/INFO]: Regen isn't added +2015-06-29 [11:49:05] [Server thread/INFO]: Steve[/72.46.207.231:58128] logged in with entity id 1076 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:49:06] [Server thread/NOTICE]: Player data not found for "baconbeanbag", creating new profile +2015-06-29 [11:49:06] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:50622] logged in with entity id 1078 at (world, 128, 62, 128) +2015-06-29 [11:49:06] [Server thread/INFO]: AdamAxeman[/60.241.103.8:56877] logged out due to timeout +2015-06-29 [11:49:06] [Server thread/INFO]: Snowballcps[/98.178.137.183:57342] logged in with entity id 1080 at (world, 116.7, 66, 172.3) +2015-06-29 [11:49:09] [Server thread/INFO]: edgardme3[/74.194.110.14:49879] logged in with entity id 1084 at (world, 128, 62, 128) +2015-06-29 [11:49:10] [Server thread/INFO]: phonix you only regen in pe if u eat +2015-06-29 [11:49:13] [Server thread/INFO]: GSmash[/72.74.58.33:53512] logged in with entity id 1087 at (world, 187.3257, 78, 96.9568) +2015-06-29 [11:49:13] [Server thread/INFO]: Lpnt[/24.165.82.15:58940] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:49:14] [Server thread/INFO]: Lpnt[/24.165.82.15:54861] logged in with entity id 1089 at (world, 128, 62, 128) +2015-06-29 [11:49:16] [Server thread/INFO]: Peaceful is +2015-06-29 [11:49:18] [Server thread/INFO]: 221B[/76.114.51.74:49745] logged out due to timeout +2015-06-29 [11:49:19] [Server thread/INFO]: I played PE since 0.4 +2015-06-29 [11:49:23] [Server thread/INFO]: [Server] does never other? +2015-06-29 [11:49:26] [Server thread/INFO]: mat +2015-06-29 [11:49:26] [Server thread/INFO]: TheOGPhoenix left the game +2015-06-29 [11:49:26] [Server thread/INFO]: TheOGPhoenix[/107.107.60.45:40483] logged out due to timeout +2015-06-29 [11:49:28] [Server thread/INFO]: boo2300[/108.200.60.123:55979] logged out due to timeout +2015-06-29 [11:49:28] [Server thread/INFO]: some chunks wont load for me xD +2015-06-29 [11:49:29] [Server thread/INFO]: [Server] what... i meant to say +2015-06-29 [11:49:30] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:59361] logged out due to timeout +2015-06-29 [11:49:30] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:53909] logged in with entity id 1101 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:49:30] [Server thread/INFO]: TheOGPhoenix[/108.54.73.90:61020] logged in with entity id 1102 at (world, 163.3939, 71, 112.6389) +2015-06-29 [11:49:30] [Server thread/INFO]: [Server] does nether work +2015-06-29 [11:49:32] [Server thread/INFO]: ywah +2015-06-29 [11:49:32] [Server thread/INFO]: I cant build D: +2015-06-29 [11:49:33] [Server thread/INFO]: Immovable[/184.163.201.200:54743] logged in with entity id 1103 at (world, 128, 62, 128) +2015-06-29 [11:49:34] [Server thread/INFO]: oh +2015-06-29 [11:49:34] [Server thread/INFO]: hi +2015-06-29 [11:49:34] [Server thread/INFO]: guys i got dirt +2015-06-29 [11:49:35] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:49437] logged out due to timeout +2015-06-29 [11:49:38] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:61261] logged in with entity id 1108 at (world, 128, 62, 128) +2015-06-29 [11:49:39] [Server thread/INFO]: how do you have custom skin? +2015-06-29 [11:49:39] [Server thread/INFO]: [CONSOLE: Given Obsidian (49:0) * 10 to chissling] +2015-06-29 [11:49:40] [Server thread/INFO]: there isnt a nether +2015-06-29 [11:49:41] [Server thread/NOTICE]: Player data not found for "scary", creating new profile +2015-06-29 [11:49:41] [Server thread/INFO]: Scary[/70.209.137.205:4148] logged in with entity id 1112 at (world, 128, 62, 128) +2015-06-29 [11:49:41] [Server thread/INFO]: zaidynzm9527 left the game +2015-06-29 [11:49:41] [Server thread/INFO]: zaidynzm9527[/120.151.31.188:52621] logged out due to client disconnect +2015-06-29 [11:49:44] [Server thread/INFO]: Umm only on survival +2015-06-29 [11:49:44] [Server thread/INFO]: gice op and inwill check +2015-06-29 [11:49:45] [Server thread/INFO]: u mean the reactor? +2015-06-29 [11:49:45] [Server thread/INFO]: TheOGPhoenix[/108.54.73.90:61020] logged out due to timeout +2015-06-29 [11:49:47] [Server thread/INFO]: i got snow lol +2015-06-29 [11:49:48] [Server thread/INFO]: there is no nether +2015-06-29 [11:49:52] [Server thread/INFO]: Theres a reactor +2015-06-29 [11:49:52] [Server thread/INFO]: TheOGPhoenix[/108.54.73.90:53484] logged in with entity id 1125 at (world, 163.3939, 71, 112.6389) +2015-06-29 [11:49:54] [Server thread/INFO]: Ton left the game +2015-06-29 [11:49:54] [Server thread/INFO]: Ton[/99.117.132.36:55665] logged out due to client disconnect +2015-06-29 [11:49:58] [Server thread/INFO]: yay +2015-06-29 [11:49:58] [Server thread/INFO]: Brb ima go play terraria +2015-06-29 [11:49:59] [Server thread/INFO]: Pyzen[/108.81.233.128:51988] logged out due to timeout +2015-06-29 [11:50:00] [Server thread/INFO]: boo2300[/66.87.73.181:15460] logged in with entity id 1135 at (world, 71.4636, 68.0549, 64.842) +2015-06-29 [11:50:01] [Server thread/INFO]: Pyzen[/108.81.233.128:63669] logged in with entity id 1137 at (world, 128, 62, 128) +2015-06-29 [11:50:03] [Server thread/INFO]: *ya +2015-06-29 [11:50:04] [Server thread/INFO]: I can build a nether reactor if I get the stuff +2015-06-29 [11:50:04] [Server thread/INFO]: I HATE THIS CHAT xD +2015-06-29 [11:50:05] [Server thread/INFO]: <3vandg> xo +2015-06-29 [11:50:06] [Server thread/INFO]: TheOGPhoenix[/108.54.73.90:53484] logged out due to timeout +2015-06-29 [11:50:10] [Server thread/INFO]: LightningJulian[/74.90.100.55:47814] logged out due to timeout +2015-06-29 [11:50:10] [Server thread/INFO]: <3vandg> oops +2015-06-29 [11:50:10] [Server thread/NOTICE]: Player data not found for "pikachomp", creating new profile +2015-06-29 [11:50:10] [Server thread/INFO]: pikachomp[/108.20.187.165:60084] logged in with entity id 1139 at (world, 128, 62, 128) +2015-06-29 [11:50:13] [Server thread/INFO]: turn it ofd +2015-06-29 [11:50:15] [Server thread/INFO]: boo2300[/66.87.73.181:15460] logged out due to timeout +2015-06-29 [11:50:16] [Server thread/INFO]: biohazard_[/76.16.212.5:52524] logged out due to timeout +2015-06-29 [11:50:16] [Server thread/INFO]: Spencer_99[/75.133.165.213:59536] logged out due to timeout +2015-06-29 [11:50:17] [Server thread/INFO]: bagel[/104.55.196.27:49804] logged in with entity id 1141 at (world, 128, 62, 128) +2015-06-29 [11:50:19] [Server thread/INFO]: GSmash[/72.74.58.33:53512] logged out due to timeout +2015-06-29 [11:50:21] [Server thread/INFO]: <3vandg> gosh mobile +2015-06-29 [11:50:21] [Server thread/INFO]: √4=? +2015-06-29 [11:50:21] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:50622] logged out due to timeout +2015-06-29 [11:50:22] [Server thread/INFO]: MIND THE CAPS PLEASE +2015-06-29 [11:50:23] [Server thread/INFO]: Spencer_99[/75.133.165.213:62597] logged in with entity id 1143 at (world, 128, 62, 128) +2015-06-29 [11:50:23] [Server thread/INFO]: mojangpvp[/173.63.124.207:59492] logged out due to timeout +2015-06-29 [11:50:25] [Server thread/INFO]: So lag +2015-06-29 [11:50:28] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:58777] logged out due to timeout +2015-06-29 [11:50:29] [Server thread/INFO]: Hybalt[/68.196.163.172:58014] logged out due to timeout +2015-06-29 [11:50:32] [Server thread/INFO]: _Asuna_[/24.159.18.177:59460] logged out due to timeout +2015-06-29 [11:50:33] [Server thread/INFO]: LightningJulian[/74.90.100.55:42270] logged in with entity id 1149 at (world, 128, 62, 128) +2015-06-29 [11:50:34] [Server thread/INFO]: Immovable[/184.163.201.200:54743] logged out due to timeout +2015-06-29 [11:50:35] [Server thread/INFO]: How does one get their skin on PE? +2015-06-29 [11:50:35] [Server thread/INFO]: [CONSOLE: Given Obsidian (49:0) * 40 to chissling] +2015-06-29 [11:50:36] [Server thread/INFO]: Hybalt[/68.196.163.172:55879] logged in with entity id 1151 at (world, 128, 62, 128) +2015-06-29 [11:50:36] [Server thread/INFO]: good idea mojang put the chat on top +2015-06-29 [11:50:37] [Server thread/INFO]: i made a pit >:D +2015-06-29 [11:50:39] [Server thread/INFO]: _Asuna_[/24.159.18.177:49184] logged in with entity id 1155 at (world, 128, 62, 128) +2015-06-29 [11:50:47] [Server thread/INFO]: TheJoshXGames[/69.127.97.90:63810] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:50:47] [Server thread/INFO]: TheJoshXGames[/69.127.97.90:60480] logged in with entity id 1160 at (world, 128, 62, 128) +2015-06-29 [11:50:47] [Server thread/INFO]: PyxlnotSteve left the game +2015-06-29 [11:50:47] [Server thread/INFO]: PyxlnotSteve[/71.12.89.93:59174] logged out due to timeout +2015-06-29 [11:50:48] [Server thread/INFO]: Nickel_ left the game +2015-06-29 [11:50:48] [Server thread/INFO]: Nickel_[/24.192.64.208:61202] logged out due to timeout +2015-06-29 [11:50:49] [Server thread/INFO]: i didnt even know servers were a thing on PE +2015-06-29 [11:50:51] [Server thread/INFO]: Scary[/70.209.137.205:4148] logged out due to timeout +2015-06-29 [11:50:52] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:19418] logged in with entity id 1164 at (world, 128, 62, 128) +2015-06-29 [11:50:52] [Server thread/INFO]: [CONSOLE: Given Diamond Pickaxe (278:0) * 1 to chissling] +2015-06-29 [11:50:53] [Server thread/INFO]: Ton[/99.117.132.36:61477] logged in with entity id 1165 at (world, 167.188, 68.0077, 165.8002) +2015-06-29 [11:50:54] [Server thread/INFO]: guys im so lost +2015-06-29 [11:50:56] [Server thread/INFO]: <3vandg> can i, like, get pe on my computer? xD +2015-06-29 [11:50:57] [Server thread/INFO]: Really poo +2015-06-29 [11:50:57] [Server thread/INFO]: same lol +2015-06-29 [11:50:59] [Server thread/INFO]: Jlogaming[/104.235.41.90:65474] logged out due to timeout +2015-06-29 [11:51:01] [Server thread/INFO]: Steve[/72.46.207.231:58128] logged out due to timeout +2015-06-29 [11:51:02] [Server thread/INFO]: nope xD +2015-06-29 [11:51:02] [Server thread/INFO]: -,_(._. )_,- +2015-06-29 [11:51:03] [Server thread/INFO]: Scary[/70.209.137.205:4152] logged in with entity id 1176 at (world, 128, 62, 128) +2015-06-29 [11:51:05] [Server thread/INFO]: I wish +2015-06-29 [11:51:06] [Server thread/INFO]: you eat double stacked pizza xPixel +2015-06-29 [11:51:07] [Server thread/INFO]: pikachomp[/108.20.187.165:60084] logged out due to timeout +2015-06-29 [11:51:08] [Server thread/INFO]: Steve[/72.46.207.231:57687] logged in with entity id 1181 at (world, 188.3428, 78.4315, 85.3) +2015-06-29 [11:51:09] [Server thread/INFO]: <3vandg> lol +2015-06-29 [11:51:11] [Server thread/INFO]: Skin settings, download your skin image to picture folder then select it in settingd +2015-06-29 [11:51:16] [Server thread/INFO]: [CONSOLE: Given Unknown (251:0) * 64 to chissling] +2015-06-29 [11:51:19] [Server thread/INFO]: Immovable[/184.163.201.200:65368] logged in with entity id 1193 at (world, 128, 62, 128) +2015-06-29 [11:51:23] [Server thread/INFO]: [CONSOLE: Given Flint and Steel (259:0) * 1 to chissling] +2015-06-29 [11:51:25] [Server thread/INFO]: Everyone in here is staff right? +2015-06-29 [11:51:26] [Server thread/INFO]: shaun[/50.72.112.117:57728] logged out due to timeout +2015-06-29 [11:51:26] [Server thread/INFO]: omg typing and walking is such a workout for dem fingers +2015-06-29 [11:51:27] [Server thread/INFO]: bagel[/104.55.196.27:49804] logged out due to timeout +2015-06-29 [11:51:30] [Server thread/INFO]: LightningJulian[/74.90.100.55:42270] logged out due to timeout +2015-06-29 [11:51:31] [Server thread/INFO]: Orthdntst_[/98.200.179.70:40388] logged out due to timeout +2015-06-29 [11:51:32] [Server thread/INFO]: most of us +2015-06-29 [11:51:32] [Server thread/INFO]: nope +2015-06-29 [11:51:34] [Server thread/INFO]: No we arent all staff. +2015-06-29 [11:51:34] [Server thread/INFO]: 15Ibans[/72.91.34.54:51701] logged out due to timeout +2015-06-29 [11:51:35] [Server thread/NOTICE]: Player data not found for "phination", creating new profile +2015-06-29 [11:51:35] [Server thread/INFO]: Phination[/50.72.112.117:53302] logged in with entity id 1196 at (world, 128, 62, 128) +2015-06-29 [11:51:35] [Server thread/INFO]: 15Ibans[/72.91.34.54:54324] logged in with entity id 1197 at (world, 193.6524, 63, 131.3) +2015-06-29 [11:51:36] [Server thread/INFO]: xStar_89[/71.57.47.150:62396] logged out due to timeout +2015-06-29 [11:51:36] [Server thread/INFO]: edgardme3[/74.194.110.14:49879] logged out due to timeout +2015-06-29 [11:51:36] [Server thread/INFO]: millenium200 left the game +2015-06-29 [11:51:36] [Server thread/INFO]: millenium200[/65.189.205.183:56249] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:51:36] [Server thread/INFO]: millenium200[/65.189.205.183:36069] logged in with entity id 1198 at (world, 219.5358, 81, 380.0258) +2015-06-29 [11:51:36] [Server thread/INFO]: ll +2015-06-29 [11:51:36] [Server thread/INFO]: :) +2015-06-29 [11:51:38] [Server thread/INFO]: Jenna Swag[/73.18.119.179:60149] logged out due to Invalid name! +2015-06-29 [11:51:39] [Server thread/INFO]: Scary[/70.209.137.205:4152] logged out due to timeout +2015-06-29 [11:51:39] [Server thread/INFO]: <3vandg> not all +2015-06-29 [11:51:41] [Server thread/INFO]: xStar_89[/71.57.47.150:60632] logged in with entity id 1200 at (world, 161.016, 70, 116.4202) +2015-06-29 [11:51:41] [Server thread/INFO]: [Server] anyone can join +2015-06-29 [11:51:41] [Server thread/INFO]: mojangpvp[/173.63.124.207:57034] logged in with entity id 1201 at (world, 113.5796, 69, 76.6632) +2015-06-29 [11:51:42] [Server thread/INFO]: its inviur friends +2015-06-29 [11:51:42] [Server thread/INFO]: pikachomp[/108.20.187.165:54411] logged in with entity id 1202 at (world, 128, 62, 128) +2015-06-29 [11:51:44] [Server thread/INFO]: was it opened to the public? +2015-06-29 [11:51:44] [Server thread/INFO]: [Server] please dont leave +2015-06-29 [11:51:46] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:57308] logged in with entity id 1205 at (world, 128, 62, 128) +2015-06-29 [11:51:46] [Server thread/INFO]: [Server] need more! +2015-06-29 [11:51:47] [Server thread/INFO]: Hybalt[/68.196.163.172:55879] logged out due to timeout +2015-06-29 [11:51:47] [Server thread/INFO]: edgardme3[/74.194.110.14:49347] logged in with entity id 1206 at (world, 128, 62, 128) +2015-06-29 [11:51:48] [Server thread/INFO]: chiss gimme 4 gold blocks, lots of cobble and 1 nether reactor pls +2015-06-29 [11:51:49] [Server thread/INFO]: LightningJulian[/74.90.100.55:37350] logged in with entity id 1208 at (world, 128, 62, 128) +2015-06-29 [11:51:50] [Server thread/INFO]: 221B[/76.114.51.74:60793] logged in with entity id 1209 at (world, 331.607, 71, 184.749) +2015-06-29 [11:51:54] [Server thread/INFO]: Gotcha +2015-06-29 [11:51:54] [Server thread/INFO]: Impulse[/118.211.102.28:55435] logged out due to timeout +2015-06-29 [11:51:54] [Server thread/INFO]: MOAR PLAYERZZZ +2015-06-29 [11:51:55] [Server thread/INFO]: LOL +2015-06-29 [11:52:00] [Server thread/NOTICE]: Player data not found for "jennaswag", creating new profile +2015-06-29 [11:52:00] [Server thread/INFO]: JennaSwag[/73.18.119.179:62219] logged in with entity id 1213 at (world, 128, 62, 128) +2015-06-29 [11:52:01] [Server thread/INFO]: Carson[/24.67.112.135:54562] logged in with entity id 1214 at (world, 172.4975, 76, 77.434) +2015-06-29 [11:52:01] [Server thread/INFO]: well it is lagging for sure +2015-06-29 [11:52:02] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:53909] logged out due to timeout +2015-06-29 [11:52:03] [Server thread/INFO]: In-game allowed? +2015-06-29 [11:52:04] [Server thread/INFO]: [Server] get your friends in here +2015-06-29 [11:52:06] [Server thread/INFO]: i am waiting for the first victum to fall in the pit >:c +2015-06-29 [11:52:09] [Server thread/INFO]: Graphic joined the game +2015-06-29 [11:52:10] [Server thread/INFO]: Lets get 40k!!! +2015-06-29 [11:52:12] [Server thread/INFO]: 221B[/76.114.51.74:60793] logged out due to timeout +2015-06-29 [11:52:16] [Server thread/INFO]: <3vandg> hi jer +2015-06-29 [11:52:16] [Server thread/INFO]: I canr build. +2015-06-29 [11:52:19] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:60145] logged in with entity id 1231 at (world, 128, 62, 128) +2015-06-29 [11:52:19] [Server thread/INFO]: what friends? xD +2015-06-29 [11:52:20] [Server thread/NOTICE]: Player data not found for "diddykong", creating new profile +2015-06-29 [11:52:20] [Server thread/INFO]: DiddyKong[/68.50.75.148:63840] logged in with entity id 1232 at (world, 128, 62, 128) +2015-06-29 [11:52:22] [Server thread/INFO]: <3vandg> lol joe +2015-06-29 [11:52:29] [Server thread/INFO]: xD +2015-06-29 [11:52:31] [Server thread/INFO]: I'm guessing ould only tell staff? +2015-06-29 [11:52:36] [Server thread/INFO]: I shiuld +2015-06-29 [11:52:39] [Server thread/INFO]: Hai evan! +2015-06-29 [11:52:41] [Server thread/INFO]: Hybalt[/68.196.163.172:50551] logged in with entity id 1243 at (world, 128, 62, 128) +2015-06-29 [11:52:43] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:61209] logged in with entity id 1245 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:52:46] [Server thread/INFO]: TheOGPhoenix[/108.54.73.90:61334] logged in with entity id 1246 at (world, 163.3939, 71, 112.6389) +2015-06-29 [11:52:48] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [11:52:48] [Server thread/INFO]: PizzaMan319[/24.112.237.66:50477] logged out due to client disconnect +2015-06-29 [11:52:48] [Server thread/INFO]: ould Can't tpe mobile +2015-06-29 [11:52:49] [Server thread/INFO]: xPixel drowned +2015-06-29 [11:52:51] [Server thread/INFO]: chiss do u even nether in pe? +2015-06-29 [11:52:52] [Server thread/INFO]: JennaSwag[/73.18.119.179:62219] logged out due to timeout +2015-06-29 [11:52:52] [Server thread/INFO]: JennaSwag[/73.18.119.179:64682] logged in with entity id 1249 at (world, 128, 62, 128) +2015-06-29 [11:52:53] [Server thread/INFO]: PizzaMan319[/24.112.237.66:41779] logged in with entity id 1250 at (world, 25.655, 60, 227.8529) +2015-06-29 [11:52:55] [Server thread/INFO]: Jlogaming[/104.235.41.90:59460] logged in with entity id 1251 at (world, 128, 62, 128) +2015-06-29 [11:53:00] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:61209] logged out due to timeout +2015-06-29 [11:53:02] [Server thread/INFO]: TheOGPhoenix[/108.54.73.90:61334] logged out due to timeout +2015-06-29 [11:53:03] [Server thread/INFO]: There is Nether in PR +2015-06-29 [11:53:04] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:61261] logged out due to timeout +2015-06-29 [11:53:04] [Server thread/INFO]: [Server] apaprently not +2015-06-29 [11:53:05] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:55833] logged in with entity id 1253 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:53:05] [Server thread/INFO]: o O +2015-06-29 [11:53:05] [Server thread/INFO]: :: +2015-06-29 [11:53:06] [Server thread/INFO]: *PE +2015-06-29 [11:53:08] [Server thread/INFO]: no tell everyone about this server we need 100 people +2015-06-29 [11:53:08] [Server thread/INFO]: [Server] hows the lag for everyone +2015-06-29 [11:53:08] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:19418] logged out due to timeout +2015-06-29 [11:53:11] [Server thread/INFO]: [Server] i mean, its hosted in australia +2015-06-29 [11:53:13] [Server thread/INFO]: There is no nether +2015-06-29 [11:53:15] [Server thread/INFO]: [Server] so its going to be laggy +2015-06-29 [11:53:15] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:58005] logged in with entity id 1261 at (world, 128, 62, 128) +2015-06-29 [11:53:15] [Server thread/INFO]: where is the mineplepligin +2015-06-29 [11:53:15] [Server thread/INFO]: none +2015-06-29 [11:53:16] [Server thread/INFO]: bagel[/104.55.196.27:64034] logged in with entity id 1263 at (world, 128, 62, 128) +2015-06-29 [11:53:17] [Server thread/INFO]: how2croch +2015-06-29 [11:53:18] [Server thread/INFO]: bad +2015-06-29 [11:53:18] [Server thread/INFO]: its okay +2015-06-29 [11:53:19] [Server thread/INFO]: no lag +2015-06-29 [11:53:19] [Server thread/INFO]: millenium200[/65.189.205.183:36069] logged out due to timeout +2015-06-29 [11:53:19] [Server thread/INFO]: [Server] but is it horribly laggy? +2015-06-29 [11:53:23] [Server thread/INFO]: [Server] thats good +2015-06-29 [11:53:23] [Server thread/INFO]: really bad +2015-06-29 [11:53:24] [Server thread/INFO]: Lags pretty bad for me +2015-06-29 [11:53:24] [Server thread/INFO]: one job chiss +2015-06-29 [11:53:25] [Server thread/INFO]: Immovable[/184.163.201.200:65368] logged out due to timeout +2015-06-29 [11:53:26] [Server thread/INFO]: aweful +2015-06-29 [11:53:27] [Server thread/INFO]: lag actakllu not too bad +2015-06-29 [11:53:28] [Server thread/INFO]: It is really bad +2015-06-29 [11:53:32] [Server thread/INFO]: xRambo left the game +2015-06-29 [11:53:32] [Server thread/INFO]: xRambo[/216.188.215.96:58556] logged out due to timeout +2015-06-29 [11:53:32] [Server thread/INFO]: im near Chicago FYI +2015-06-29 [11:53:33] [Server thread/INFO]: no lag at all +2015-06-29 [11:53:34] [Server thread/INFO]: gr8p left the game +2015-06-29 [11:53:34] [Server thread/INFO]: gr8p[/50.175.156.220:53917] logged out due to timeout +2015-06-29 [11:53:34] [Server thread/NOTICE]: Player data not found for "jrayx", creating new profile +2015-06-29 [11:53:34] [Server thread/INFO]: jRayx[/70.193.215.134:6395] logged in with entity id 1269 at (world, 128, 62, 128) +2015-06-29 [11:53:35] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:11153] logged in with entity id 1270 at (world, 128, 62, 128) +2015-06-29 [11:53:36] [Server thread/INFO]: no server lag tons of connection lag +2015-06-29 [11:53:37] [Server thread/INFO]: Immovable[/184.163.201.200:57705] logged in with entity id 1271 at (world, 128, 62, 128) +2015-06-29 [11:53:38] [Server thread/NOTICE]: Player data not found for "millenium201", creating new profile +2015-06-29 [11:53:38] [Server thread/INFO]: millenium201[/65.189.205.183:42185] logged in with entity id 1272 at (world, 128, 62, 128) +2015-06-29 [11:53:39] [Server thread/INFO]: millenium200[/65.189.205.183:49086] logged in with entity id 1274 at (world, 219.5358, 81, 380.0258) +2015-06-29 [11:53:39] [Server thread/INFO]: Carson[/24.67.112.135:54562] logged out due to timeout +2015-06-29 [11:53:40] [Server thread/INFO]: in minnesota +2015-06-29 [11:53:43] [Server thread/INFO]: CodeName[/24.45.209.193:59147] logged out due to timeout +2015-06-29 [11:53:44] [Server thread/INFO]: pikachomp[/108.20.187.165:54411] logged out due to timeout +2015-06-29 [11:53:49] [Server thread/INFO]: so +2015-06-29 [11:53:50] [Server thread/INFO]: im in florida +2015-06-29 [11:53:50] [Server thread/INFO]: °v° Hai +2015-06-29 [11:53:51] [Server thread/INFO]: chissling left the game +2015-06-29 [11:53:51] [Server thread/INFO]: chissling[/1.152.97.61:29874] logged out due to timeout +2015-06-29 [11:53:51] [Server thread/INFO]: xStar_89[/71.57.47.150:60632] logged out due to timeout +2015-06-29 [11:53:52] [Server thread/INFO]: #ChiTownRep +2015-06-29 [11:53:56] [Server thread/INFO]: pikachomp[/108.20.187.165:56960] logged in with entity id 1286 at (world, 128, 62, 128) +2015-06-29 [11:53:57] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:11153] logged out due to timeout +2015-06-29 [11:53:58] [Server thread/INFO]: Jlogaming[/104.235.41.90:59460] logged out due to timeout +2015-06-29 [11:54:01] [Server thread/INFO]: If you take our a ility to build away then no lag +2015-06-29 [11:54:03] [Server thread/INFO]: jRayx[/70.193.215.134:6395] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:54:03] [Server thread/INFO]: jRayx[/70.193.215.134:6374] logged in with entity id 1303 at (world, 128, 62, 128) +2015-06-29 [11:54:05] [Server thread/INFO]: DiddyKong[/68.50.75.148:63840] logged out due to timeout +2015-06-29 [11:54:05] [Server thread/INFO]: so lag +2015-06-29 [11:54:09] [Server thread/INFO]: chissling[/1.152.97.61:50588] logged in with entity id 1320 at (world, 146.7342, 65, 114.4504) +2015-06-29 [11:54:09] [Server thread/INFO]: DiddyKong[/68.50.75.148:62651] logged in with entity id 1322 at (world, 128, 62, 128) +2015-06-29 [11:54:10] [Server thread/INFO]: then agIn im really far from spawn hehe +2015-06-29 [11:54:11] [Server thread/INFO]: rp me chias +2015-06-29 [11:54:14] [Server thread/INFO]: Spencer_99[/75.133.165.213:62597] logged out due to timeout +2015-06-29 [11:54:15] [Server thread/NOTICE]: Player data not found for "alpharaptor", creating new profile +2015-06-29 [11:54:15] [Server thread/INFO]: AlphaRaptor[/99.149.26.83:57634] logged in with entity id 1325 at (world, 128, 62, 128) +2015-06-29 [11:54:15] [Server thread/INFO]: tp +2015-06-29 [11:54:18] [Server thread/INFO]: Flourburgerbear left the game +2015-06-29 [11:54:18] [Server thread/INFO]: Flourburgerbear[/50.153.50.255:3082] logged out due to client disconnect +2015-06-29 [11:54:20] [Server thread/INFO]: ZexhL suffocated in a wall +2015-06-29 [11:54:20] [Server thread/INFO]: Lol Zeyl med +2015-06-29 [11:54:21] [Server thread/NOTICE]: Player data not found for "inbnd", creating new profile +2015-06-29 [11:54:21] [Server thread/INFO]: Inbnd[/69.158.47.15:36373] logged in with entity id 1337 at (world, 128, 62, 128) +2015-06-29 [11:54:21] [Server thread/INFO]: ZexhL left the game +2015-06-29 [11:54:21] [Server thread/INFO]: ZexhL[/68.38.223.43:60582] logged out due to timeout +2015-06-29 [11:54:23] [Server thread/INFO]: So when you said that we where making a Aussie server.. you never said it was going to be PE +2015-06-29 [11:54:25] [Server thread/INFO]: #Mineplex40k +2015-06-29 [11:54:29] [Server thread/INFO]: Hi[/104.246.120.48:56090] logged out due to Invalid name! +2015-06-29 [11:54:29] [Server thread/INFO]: stable connection for me +2015-06-29 [11:54:34] [Server thread/INFO]: Immovable[/184.163.201.200:57705] logged out due to timeout +2015-06-29 [11:54:38] [Server thread/INFO]: lol whiz +2015-06-29 [11:54:41] [Server thread/INFO]: IM JUMPING +2015-06-29 [11:54:42] [Server thread/INFO]: Hybalt[/68.196.163.172:50551] logged out due to timeout +2015-06-29 [11:54:43] [Server thread/INFO]: lol +2015-06-29 [11:54:45] [Server thread/INFO]: Hybalt[/68.196.163.172:53084] logged in with entity id 1359 at (world, 128, 62, 128) +2015-06-29 [11:54:45] [Server thread/INFO]: PE was suggested for a while +2015-06-29 [11:54:50] [Server thread/INFO]: Imagine 40k in PE +2015-06-29 [11:54:50] [Server thread/INFO]: Immovable[/184.163.201.200:50636] logged in with entity id 1364 at (world, 128, 62, 128) +2015-06-29 [11:54:52] [Server thread/INFO]: pikachomp[/108.20.187.165:56960] logged out due to timeout +2015-06-29 [11:54:52] [Server thread/NOTICE]: Player data not found for "hello", creating new profile +2015-06-29 [11:54:52] [Server thread/INFO]: Hello[/104.246.120.48:52048] logged in with entity id 1366 at (world, 128, 62, 128) +2015-06-29 [11:54:52] [Server thread/INFO]: JennaSwag[/73.18.119.179:64682] logged out due to timeout +2015-06-29 [11:54:59] [Server thread/INFO]: JennaSwag[/73.18.119.179:59912] logged in with entity id 1367 at (world, 128, 62, 128) +2015-06-29 [11:55:00] [Server thread/INFO]: jRayx[/70.193.215.134:6374] logged out due to timeout +2015-06-29 [11:55:01] [Server thread/INFO]: give us creative pl0x +2015-06-29 [11:55:01] [Server thread/INFO]: bagel[/104.55.196.27:64034] logged out due to timeout +2015-06-29 [11:55:02] [Server thread/NOTICE]: Player data not found for "jaiw", creating new profile +2015-06-29 [11:55:02] [Server thread/INFO]: Jaiw[/166.177.184.154:11798] logged in with entity id 1370 at (world, 128, 62, 128) +2015-06-29 [11:55:02] [Server thread/INFO]: pikachomp[/108.20.187.165:57096] logged in with entity id 1372 at (world, 128, 62, 128) +2015-06-29 [11:55:03] [Server thread/INFO]: I BELEIVE I CAN FLY +2015-06-29 [11:55:04] [Server thread/INFO]: Jlogaming[/104.235.41.90:58421] logged in with entity id 1373 at (world, 128, 62, 128) +2015-06-29 [11:55:04] [Server thread/INFO]: jRayx[/70.193.215.134:6376] logged in with entity id 1374 at (world, 128, 62, 128) +2015-06-29 [11:55:08] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:58005] logged out due to timeout +2015-06-29 [11:55:09] [Server thread/INFO]: no u cant +2015-06-29 [11:55:12] [Server thread/INFO]: mojangpvp[/173.63.124.207:57034] logged out due to timeout +2015-06-29 [11:55:13] [Server thread/INFO]: ooo that would be painful flippin +2015-06-29 [11:55:15] [Server thread/INFO]: Lifeboat got 40K +2015-06-29 [11:55:15] [Server thread/INFO]: JennaSwag[/73.18.119.179:59912] logged out due to timeout +2015-06-29 [11:55:15] [Server thread/INFO]: Inbnd[/69.158.47.15:36373] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:55:15] [Server thread/INFO]: Inbnd[/69.158.47.15:39650] logged in with entity id 1381 at (world, 128, 62, 128) +2015-06-29 [11:55:15] [Server thread/INFO]: AlphaRaptor[/99.149.26.83:57634] logged out due to timeout +2015-06-29 [11:55:17] [Server thread/INFO]: KCGraphics left the game +2015-06-29 [11:55:17] [Server thread/INFO]: KCGraphics[/68.190.243.10:55161] logged out due to timeout +2015-06-29 [11:55:19] [Server thread/INFO]: AlphaRaptor[/99.149.26.83:63889] logged in with entity id 1384 at (world, 128, 62, 128) +2015-06-29 [11:55:24] [Server thread/INFO]: 40k in PE would break the world +2015-06-29 [11:55:24] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:57308] logged out due to timeout +2015-06-29 [11:55:25] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:55833] logged out due to timeout +2015-06-29 [11:55:25] [Server thread/NOTICE]: Player data not found for "stol", creating new profile +2015-06-29 [11:55:25] [Server thread/INFO]: Stol[/184.167.84.193:49153] logged in with entity id 1394 at (world, 128, 62, 128) +2015-06-29 [11:55:34] [Server thread/INFO]: Lifeboat has multiple servers and they are dedicated +2015-06-29 [11:55:34] [Server thread/INFO]: Chiss, in Staff-1 it seems like a lot of people cant join atm. +2015-06-29 [11:55:34] [Server thread/INFO]: No advertising +2015-06-29 [11:55:42] [Server thread/INFO]: I don't even know how to PE >_< +2015-06-29 [11:55:45] [Server thread/INFO]: Jaiw[/166.177.184.154:11798] logged out due to timeout +2015-06-29 [11:55:47] [Server thread/INFO]: Inbnd[/69.158.47.15:39650] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:55:47] [Server thread/INFO]: Inbnd[/69.158.47.15:45963] logged in with entity id 1442 at (world, 128, 62, 128) +2015-06-29 [11:55:51] [Server thread/INFO]: me neither lol +2015-06-29 [11:55:53] [Server thread/INFO]: Jaiw[/166.177.184.154:51814] logged in with entity id 1448 at (world, 128, 62, 128) +2015-06-29 [11:55:53] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:60145] logged out due to timeout +2015-06-29 [11:55:56] [Server thread/INFO]: JoePCool14 burned to death +2015-06-29 [11:55:56] [Server thread/INFO]: same +2015-06-29 [11:55:57] [Server thread/INFO]: im leaving xD +2015-06-29 [11:55:59] [Server thread/INFO]: bagel[/104.55.196.27:53435] logged in with entity id 1453 at (world, 128, 62, 128) +2015-06-29 [11:56:08] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:58325] logged in with entity id 1454 at (world, 66.8813, 75, 112.5752) +2015-06-29 [11:56:13] [Server thread/INFO]: i can get infinite sand :O +2015-06-29 [11:56:14] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:63740] logged in with entity id 1457 at (world, 128, 62, 128) +2015-06-29 [11:56:14] [Server thread/INFO]: Jlogaming[/104.235.41.90:58421] logged out due to timeout +2015-06-29 [11:56:17] [Server thread/INFO]: Welp +2015-06-29 [11:56:18] [Server thread/INFO]: Jlogaming[/104.235.41.90:65264] logged in with entity id 1464 at (world, 128, 62, 128) +2015-06-29 [11:56:20] [Server thread/INFO]: Scary[/70.209.137.205:4145] logged in with entity id 1468 at (world, 128, 62, 128) +2015-06-29 [11:56:21] [Server thread/INFO]: Matamex left the game +2015-06-29 [11:56:21] [Server thread/INFO]: Matamex[/24.1.176.231:59355] logged out due to timeout +2015-06-29 [11:56:25] [Server thread/INFO]: jRayx[/70.193.215.134:6376] logged out due to timeout +2015-06-29 [11:56:25] [Server thread/NOTICE]: Player data not found for "magicjuju", creating new profile +2015-06-29 [11:56:25] [Server thread/INFO]: magicjuju[/166.175.63.79:48339] logged in with entity id 1474 at (world, 128, 62, 128) +2015-06-29 [11:56:25] [Server thread/INFO]: Tort joined the game +2015-06-29 [11:56:26] [Server thread/INFO]: Phination[/50.72.112.117:53302] logged out due to timeout +2015-06-29 [11:56:30] [Server thread/INFO]: mojangpvp[/173.63.124.207:63577] logged in with entity id 1482 at (world, 113.5796, 69, 76.6632) +2015-06-29 [11:56:32] [Server thread/NOTICE]: Player data not found for "xkatelyn", creating new profile +2015-06-29 [11:56:32] [Server thread/INFO]: xKatelyn[/101.100.11.50:59564] logged in with entity id 1486 at (world, 128, 62, 128) +2015-06-29 [11:56:33] [Server thread/INFO]: jRayx[/70.193.215.134:6397] logged in with entity id 1488 at (world, 128, 62, 128) +2015-06-29 [11:56:33] [Server thread/INFO]: boo2300[/108.200.60.123:51768] logged in with entity id 1489 at (world, 71.4636, 68.0549, 64.842) +2015-06-29 [11:56:34] [Server thread/INFO]: chiss just see how many resources 50 people use and double it +2015-06-29 [11:56:40] [Server thread/INFO]: Someone gimme 1 nether reactor, 4 gold blocks and some cobblestone so I can lag you all even better +2015-06-29 [11:56:41] [Server thread/INFO]: Phination[/50.72.112.117:61474] logged in with entity id 1508 at (world, 128, 62, 128) +2015-06-29 [11:56:42] [Server thread/INFO]: y is there grass underwater +2015-06-29 [11:56:46] [Server thread/INFO]: Scharf left the game +2015-06-29 [11:56:46] [Server thread/INFO]: Scharf[/173.52.240.116:63852] logged out due to client disconnect +2015-06-29 [11:56:49] [Server thread/INFO]: Crumplex drowned +2015-06-29 [11:56:55] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: Lpnt joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: Pyzen joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: _Asuna_ joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: TheJoshXGames joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: Ton joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: Steve joined the game +2015-06-29 [11:56:55] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: edgardme3 joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: LightningJulian joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: millenium201 joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: millenium200 joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: chissling joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: DiddyKong joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: Immovable joined the game +2015-06-29 [11:56:56] [Server thread/INFO]: pikachomp joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: AlphaRaptor joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: Stol joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: Inbnd joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: Jaiw joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: bagel joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: crafterthatcraft joined the game +2015-06-29 [11:56:57] [Server thread/INFO]: Bro_Yoshi joined the game +2015-06-29 [11:56:58] [Server thread/NOTICE]: Player data not found for "im_destro", creating new profile +2015-06-29 [11:56:58] [Server thread/INFO]: Im_Destro[/86.149.19.74:53109] logged in with entity id 1533 at (world, 128, 62, 128) +2015-06-29 [11:56:58] [Server thread/INFO]: Hybalt left the game +2015-06-29 [11:56:58] [Server thread/INFO]: Hybalt[/68.196.163.172:53084] logged out due to timeout +2015-06-29 [11:56:58] [Server thread/INFO]: im lost +2015-06-29 [11:56:59] [Server thread/INFO]: Hello joined the game +2015-06-29 [11:56:59] [Server thread/INFO]: Jlogaming joined the game +2015-06-29 [11:56:59] [Server thread/INFO]: Scary joined the game +2015-06-29 [11:56:59] [Server thread/INFO]: magicjuju joined the game +2015-06-29 [11:56:59] [Server thread/INFO]: mojangpvp joined the game +2015-06-29 [11:56:59] [Server thread/INFO]: xKatelyn joined the game +2015-06-29 [11:56:59] [Server thread/INFO]: jRayx joined the game +2015-06-29 [11:57:00] [Server thread/INFO]: boo2300 joined the game +2015-06-29 [11:57:00] [Server thread/INFO]: Phination joined the game +2015-06-29 [11:57:00] [Server thread/INFO]: mojangpvp left the game +2015-06-29 [11:57:00] [Server thread/INFO]: mojangpvp[/173.63.124.207:63577] logged out due to timeout +2015-06-29 [11:57:00] [Server thread/INFO]: oh god +2015-06-29 [11:57:01] [Server thread/INFO]: Hybalt[/68.196.163.172:63069] logged in with entity id 1536 at (world, 128, 62, 128) +2015-06-29 [11:57:01] [Server thread/INFO]: omg +2015-06-29 [11:57:03] [Server thread/INFO]: wat the +2015-06-29 [11:57:03] [Server thread/INFO]: okay then +2015-06-29 [11:57:04] [Server thread/INFO]: WOT +2015-06-29 [11:57:05] [Server thread/INFO]: omgomgomgomgomgomgomgomgomg +2015-06-29 [11:57:07] [Server thread/INFO]: Im_Destro joined the game +2015-06-29 [11:57:07] [Server thread/INFO]: my god +2015-06-29 [11:57:07] [Server thread/INFO]: wtf +2015-06-29 [11:57:08] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [11:57:09] [Server thread/INFO]: o hello +2015-06-29 [11:57:11] [Server thread/INFO]: lol +2015-06-29 [11:57:12] [Server thread/INFO]: hi defek +2015-06-29 [11:57:14] [Server thread/INFO]: chissling left the game +2015-06-29 [11:57:14] [Server thread/INFO]: chissling[/1.152.97.61:50588] logged out due to timeout +2015-06-29 [11:57:14] [Server thread/INFO]: WHATS HAPPENING +2015-06-29 [11:57:15] [Server thread/INFO]: lol +2015-06-29 [11:57:16] [Server thread/INFO]: hi +2015-06-29 [11:57:16] [Server thread/INFO]: Hey! +2015-06-29 [11:57:17] [Server thread/INFO]: hi +2015-06-29 [11:57:19] [Server thread/INFO]: hey +2015-06-29 [11:57:20] [Server thread/INFO]: uhhhhh +2015-06-29 [11:57:21] [Server thread/INFO]: i finally got back in +2015-06-29 [11:57:21] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:61249] logged in with entity id 1546 at (world, 128, 62, 128) +2015-06-29 [11:57:21] [Server thread/INFO]: .... +2015-06-29 [11:57:21] [Server thread/INFO]: ita bugging +2015-06-29 [11:57:25] [Server thread/INFO]: chissling[/1.152.97.61:60058] logged in with entity id 1548 at (world, 146.7342, 65, 114.4504) +2015-06-29 [11:57:25] [Server thread/INFO]: sjahahaa +2015-06-29 [11:57:28] [Server thread/INFO]: hi im stafford +2015-06-29 [11:57:28] [Server thread/INFO]: hype? +2015-06-29 [11:57:29] [Server thread/INFO]: Steve left the game +2015-06-29 [11:57:29] [Server thread/INFO]: Steve[/72.46.207.231:57687] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:57:29] [Server thread/INFO]: Steve[/98.222.79.234:35489] logged in with entity id 1565 at (world, 188.3428, 77, 85.3) +2015-06-29 [11:57:30] [Server thread/INFO]: hi mike +2015-06-29 [11:57:31] [Server thread/INFO]: Snowballcps drowned +2015-06-29 [11:57:31] [Server thread/INFO]: josh!! +2015-06-29 [11:57:33] [Server thread/INFO]: hello! +2015-06-29 [11:57:33] [Server thread/INFO]: so many people +2015-06-29 [11:57:34] [Server thread/INFO]: edgardme3 drowned +2015-06-29 [11:57:34] [Server thread/INFO]: Haii +2015-06-29 [11:57:35] [Server thread/INFO]: Phination drowned +2015-06-29 [11:57:35] [Server thread/INFO]: yup in +2015-06-29 [11:57:37] [Server thread/INFO]: yeah i left and never got back in +2015-06-29 [11:57:40] [Server thread/INFO]: .,;,;,. +2015-06-29 [11:57:41] [Server thread/INFO]: <15Ibans> ®®®® +2015-06-29 [11:57:44] [Server thread/INFO]: same pizza +2015-06-29 [11:57:48] [Server thread/INFO]: crafter! +2015-06-29 [11:57:49] [Server thread/INFO]: Lol +2015-06-29 [11:57:51] [Server thread/INFO]: I finally got in :) +2015-06-29 [11:57:52] [Server thread/INFO]: Phination left the game +2015-06-29 [11:57:52] [Server thread/INFO]: Phination[/50.72.112.117:61474] logged out due to timeout +2015-06-29 [11:57:54] [Server thread/INFO]: Steve[/98.222.79.234:35489] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:57:54] [Server thread/INFO]: Steve[/173.20.33.223:51944] logged in with entity id 1601 at (world, 188.3428, 77, 85.3) +2015-06-29 [11:57:54] [Server thread/INFO]: Whiztech left the game +2015-06-29 [11:57:54] [Server thread/INFO]: Whiztech[/70.79.252.242:63985] logged out due to client disconnect +2015-06-29 [11:57:55] [Server thread/INFO]: . +2015-06-29 [11:57:57] [Server thread/INFO]: hello +2015-06-29 [11:57:57] [Server thread/INFO]: ew dylan???? +2015-06-29 [11:58:00] [Server thread/INFO]: So what now? +2015-06-29 [11:58:01] [Server thread/INFO]: how did i get here? ;) +2015-06-29 [11:58:04] [Server thread/INFO]: <15Ibans> £e +2015-06-29 [11:58:07] [Server thread/INFO]: hai +2015-06-29 [11:58:10] [Server thread/INFO]: abby ew that name +2015-06-29 [11:58:12] [Server thread/INFO]: wtf this is so hard to play +2015-06-29 [11:58:13] [Server thread/INFO]: xStrafePvPz_ left the game +2015-06-29 [11:58:13] [Server thread/INFO]: xStrafePvPz_[/98.94.21.88:55826] logged out due to client disconnect +2015-06-29 [11:58:20] [Server thread/NOTICE]: Player data not found for "untoldfury", creating new profile +2015-06-29 [11:58:20] [Server thread/INFO]: UntoldFury[/98.222.79.234:46631] logged in with entity id 1641 at (world, 128, 62, 128) +2015-06-29 [11:58:20] [Server thread/INFO]: atleast no crash yet... +2015-06-29 [11:58:21] [Server thread/INFO]: Jlogaming left the game +2015-06-29 [11:58:21] [Server thread/INFO]: Jlogaming[/104.235.41.90:65264] logged out due to timeout +2015-06-29 [11:58:21] [Server thread/INFO]: lets build a massive poop out of dirt! +2015-06-29 [11:58:21] [Server thread/INFO]: o crafter grats +2015-06-29 [11:58:27] [Server thread/NOTICE]: Player data not found for "nawooto", creating new profile +2015-06-29 [11:58:27] [Server thread/INFO]: Nawooto[/98.94.21.88:55972] logged in with entity id 1655 at (world, 128, 62, 128) +2015-06-29 [11:58:29] [Server thread/INFO]: Thanks c: +2015-06-29 [11:58:34] [Server thread/INFO]: i found the chat +2015-06-29 [11:58:36] [Server thread/INFO]: Steve[/173.20.33.223:51944] logged out due to timeout +2015-06-29 [11:58:37] [Server thread/INFO]: Scary left the game +2015-06-29 [11:58:37] [Server thread/INFO]: Scary[/70.209.137.205:4145] logged out due to timeout +2015-06-29 [11:58:38] [Server thread/INFO]: derp +2015-06-29 [11:58:39] [Server thread/INFO]: Im_Destro left the game +2015-06-29 [11:58:39] [Server thread/INFO]: Im_Destro[/86.149.19.74:53109] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:58:39] [Server thread/INFO]: Im_Destro[/86.149.19.74:49926] logged in with entity id 1678 at (world, 152.2107, 66.0001, 104.9836) +2015-06-29 [11:58:39] [Server thread/INFO]: why do we need a stress test on pe? minplex pe servrr :? +2015-06-29 [11:58:40] [Server thread/INFO]: Graphic left the game +2015-06-29 [11:58:40] [Server thread/INFO]: Graphic[/168.18.176.15:43980] logged out due to timeout +2015-06-29 [11:58:42] [Server thread/INFO]: why are we here +2015-06-29 [11:58:43] [Server thread/INFO]: crafterthatnub +2015-06-29 [11:58:45] [Server thread/INFO]: TheMegaTony drowned +2015-06-29 [11:58:46] [Server thread/INFO]: its so hard to build ;-; +2015-06-29 [11:58:48] [Server thread/INFO]: Nawooto[/98.94.21.88:55972] logged out due to timeout +2015-06-29 [11:58:50] [Server thread/INFO]: DiddyKong left the game +2015-06-29 [11:58:50] [Server thread/INFO]: DiddyKong[/68.50.75.148:62651] logged out due to timeout +2015-06-29 [11:58:50] [Server thread/INFO]: Herlo +2015-06-29 [11:58:52] [Server thread/INFO]: Congrats Tort, you have found life! +2015-06-29 [11:58:54] [Server thread/INFO]: BreadDubbs left the game +2015-06-29 [11:58:54] [Server thread/INFO]: BreadDubbs[/67.173.105.161:57569] logged out due to timeout +2015-06-29 [11:58:55] [Server thread/INFO]: <_Asuna_> This FOV :( +2015-06-29 [11:58:55] [Server thread/INFO]: TheJoshXNub +2015-06-29 [11:58:59] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [11:58:59] [Server thread/INFO]: chissling joined the game +2015-06-29 [11:58:59] [Server thread/INFO]: UntoldFury joined the game +2015-06-29 [11:59:00] [Server thread/INFO]: Im_Destro joined the game +2015-06-29 [11:59:00] [Server thread/INFO]: BreadDubbs[/67.173.105.161:51301] logged in with entity id 1709 at (world, 526.2976, 70, 445.9636) +2015-06-29 [11:59:02] [Server thread/NOTICE]: Player data not found for "snevok", creating new profile +2015-06-29 [11:59:02] [Server thread/INFO]: Snevok[/12.219.54.122:37328] logged in with entity id 1712 at (world, 128, 62, 128) +2015-06-29 [11:59:02] [Server thread/INFO]: Its been so long since i used MCPE. lol +2015-06-29 [11:59:07] [Server thread/INFO]: Hey +2015-06-29 [11:59:08] [Server thread/INFO]: ,,MOM +2015-06-29 [11:59:10] [Server thread/INFO]: BreadDubbs joined the game +2015-06-29 [11:59:10] [Server thread/INFO]: Snevok joined the game +2015-06-29 [11:59:10] [Server thread/INFO]: me too lol +2015-06-29 [11:59:12] [Server thread/INFO]: 15Ibans left the game +2015-06-29 [11:59:12] [Server thread/INFO]: 15Ibans[/72.91.34.54:54324] logged out due to timeout +2015-06-29 [11:59:17] [Server thread/INFO]: 15Ibans[/72.91.34.54:45703] logged in with entity id 1728 at (world, 186.9647, 66, 130.8221) +2015-06-29 [11:59:19] [Server thread/INFO]: abbad +2015-06-29 [11:59:20] [Server thread/INFO]: Phination[/50.72.112.117:61412] logged in with entity id 1733 at (world, 128, 62, 128) +2015-06-29 [11:59:22] [Server thread/INFO]: mikelikesmuffins left the game +2015-06-29 [11:59:22] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:59532] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [11:59:22] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:52087] logged in with entity id 1738 at (world, 175.3, 67, 51.5826) +2015-06-29 [11:59:23] [Server thread/INFO]: MADE IT +2015-06-29 [11:59:25] [Server thread/INFO]: YES +2015-06-29 [11:59:27] [Server thread/INFO]: Ton fell from a high place +2015-06-29 [11:59:30] [Server thread/NOTICE]: Player data not found for "epicbluej", creating new profile +2015-06-29 [11:59:30] [Server thread/INFO]: epicbluej[/173.20.33.223:51484] logged in with entity id 1749 at (world, 128, 62, 128) +2015-06-29 [11:59:34] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [11:59:34] [Server thread/INFO]: Phination joined the game +2015-06-29 [11:59:34] [Server thread/INFO]: ew dylan SMELLY +2015-06-29 [11:59:34] [Server thread/INFO]: i would like to thank amazon for letting me download this for free +2015-06-29 [11:59:34] [Server thread/INFO]: who wants to build a house with me? :D +2015-06-29 [11:59:35] [Server thread/INFO]: SophiaRose fell from a high place +2015-06-29 [11:59:36] [Server thread/INFO]: Hybalt drowned +2015-06-29 [11:59:37] [Server thread/INFO]: ️ +2015-06-29 [11:59:38] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [11:59:38] [Server thread/INFO]: epicbluej joined the game +2015-06-29 [11:59:38] [Server thread/INFO]: batch buddy <3 +2015-06-29 [11:59:39] [Server thread/INFO]: xPixel left the game +2015-06-29 [11:59:39] [Server thread/INFO]: xPixel[/24.29.95.166:53693] logged out due to timeout +2015-06-29 [11:59:41] [Server thread/INFO]: Snowballcps left the game +2015-06-29 [11:59:41] [Server thread/INFO]: Snowballcps[/98.178.137.183:57342] logged out due to client disconnect +2015-06-29 [11:59:42] [Server thread/INFO]: HI TIMMY +2015-06-29 [11:59:44] [Server thread/INFO]: Snowballcps[/98.178.137.183:54733] logged in with entity id 1764 at (world, 145.6646, 65, 113.8365) +2015-06-29 [11:59:44] [Server thread/INFO]: Phination drowned +2015-06-29 [11:59:45] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [11:59:46] [Server thread/INFO]: ;-; Abby +2015-06-29 [11:59:50] [Server thread/INFO]: Fungames300 left the game +2015-06-29 [11:59:50] [Server thread/INFO]: Fungames300[/68.82.64.189:41583] logged out due to client disconnect +2015-06-29 [11:59:54] [Server thread/INFO]: hai +2015-06-29 [11:59:57] [Server thread/INFO]: . +2015-06-29 [11:59:59] [Server thread/INFO]: 3vandg left the game +2015-06-29 [11:59:59] [Server thread/INFO]: 3vandg[/73.22.163.221:51384] logged out due to timeout +2015-06-29 [12:00:00] [Server thread/INFO]: jsjzjz +2015-06-29 [12:00:03] [Server thread/INFO]: so hard to build! xD +2015-06-29 [12:00:04] [Server thread/INFO]: m om hi +2015-06-29 [12:00:08] [Server thread/INFO]: I would like to thank google for letting me pay ten cents for this +2015-06-29 [12:00:17] [Server thread/INFO]: lol +2015-06-29 [12:00:19] [Server thread/INFO]: jRayx left the game +2015-06-29 [12:00:19] [Server thread/INFO]: jRayx[/70.193.215.134:6397] logged out due to timeout +2015-06-29 [12:00:21] [Server thread/INFO]: Playastar[/96.38.8.62:51734] logged in with entity id 1810 at (world, 128, 62, 128) +2015-06-29 [12:00:22] [Server thread/INFO]: mikelikesmuffins left the game +2015-06-29 [12:00:22] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:52087] logged out due to timeout +2015-06-29 [12:00:23] [Server thread/INFO]: Playastar joined the game +2015-06-29 [12:00:31] [Server thread/INFO]: Using school wifi rn ;o +2015-06-29 [12:00:34] [Server thread/INFO]: Who else is building their own house lol +2015-06-29 [12:00:37] [Server thread/INFO]: rip everyone with bad internet +2015-06-29 [12:00:37] [Server thread/INFO]: free cookies +2015-06-29 [12:00:38] [Server thread/INFO]: mysti! :) +2015-06-29 [12:00:41] [Server thread/INFO]: Me +2015-06-29 [12:00:44] [Server thread/INFO]: You will never find meh >:D +2015-06-29 [12:00:44] [Server thread/INFO]: hai!!! +2015-06-29 [12:00:45] [Server thread/INFO]: hey guys +2015-06-29 [12:00:46] [Server thread/NOTICE]: Player data not found for "squidz", creating new profile +2015-06-29 [12:00:46] [Server thread/INFO]: Squidz[/24.185.36.236:50934] logged in with entity id 1851 at (world, 128, 62, 128) +2015-06-29 [12:00:51] [Server thread/INFO]: Squidz joined the game +2015-06-29 [12:00:51] [Server thread/INFO]: my phone is gonna overheat +2015-06-29 [12:00:51] [Server thread/INFO]: i am so laggy that I can't take damage +2015-06-29 [12:00:54] [Server thread/INFO]: hey playa +2015-06-29 [12:00:58] [Server thread/INFO]: how do you check whos online? +2015-06-29 [12:00:59] [Server thread/INFO]: sophhhhhh +2015-06-29 [12:00:59] [Server thread/INFO]: im jusd buiding up like a smart person. :P +2015-06-29 [12:01:03] [Server thread/INFO]: haii +2015-06-29 [12:01:04] [Server thread/INFO]: lol my phone is running hot +2015-06-29 [12:01:05] [Server thread/NOTICE]: Player data not found for "bswardx", creating new profile +2015-06-29 [12:01:05] [Server thread/INFO]: bswardx[/220.245.130.194:50953] logged in with entity id 1874 at (world, 128, 62, 128) +2015-06-29 [12:01:05] [Server thread/INFO]: timmyyyy +2015-06-29 [12:01:07] [Server thread/INFO]: hiii +2015-06-29 [12:01:08] [Server thread/INFO]: bswardx joined the game +2015-06-29 [12:01:08] [Server thread/INFO]: press pause +2015-06-29 [12:01:15] [Server thread/INFO]: who named themself Hybalt +2015-06-29 [12:01:15] [Server thread/INFO]: I just torrented this pocket minecraft edition to get on here xD +2015-06-29 [12:01:19] [Server thread/INFO]: magicjuju left the game +2015-06-29 [12:01:19] [Server thread/INFO]: magicjuju[/166.175.63.79:48339] logged out due to timeout +2015-06-29 [12:01:19] [Server thread/INFO]: hi :D +2015-06-29 [12:01:20] [Server thread/INFO]: TheJoshXGames left the game +2015-06-29 [12:01:20] [Server thread/INFO]: TheJoshXGames[/69.127.97.90:60480] logged out due to client disconnect +2015-06-29 [12:01:22] [Server thread/INFO]: Phination left the game +2015-06-29 [12:01:22] [Server thread/INFO]: Phination[/50.72.112.117:61412] logged out due to client disconnect +2015-06-29 [12:01:27] [Server thread/INFO]: xKatelyn left the game +2015-06-29 [12:01:27] [Server thread/INFO]: xKatelyn[/101.100.11.50:59564] logged out due to client disconnect +2015-06-29 [12:01:27] [Server thread/INFO]: xD +2015-06-29 [12:01:28] [Server thread/INFO]: chissling left the game +2015-06-29 [12:01:28] [Server thread/INFO]: chissling[/1.152.97.61:60058] logged out due to timeout +2015-06-29 [12:01:28] [Server thread/INFO]: BloodMiester[/97.101.46.243:52411] logged in with entity id 1884 at (world, 128, 62, 128) +2015-06-29 [12:01:30] [Server thread/INFO]: i dont see a pause +2015-06-29 [12:01:30] [Server thread/INFO]: lol timmy +2015-06-29 [12:01:31] [Server thread/INFO]: BloodMiester joined the game +2015-06-29 [12:01:33] [Server thread/INFO]: Stol left the game +2015-06-29 [12:01:33] [Server thread/INFO]: Stol[/184.167.84.193:49153] logged out due to client disconnect +2015-06-29 [12:01:33] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [12:01:33] [Server thread/INFO]: PizzaMan319[/24.112.237.66:41779] logged out due to client disconnect +2015-06-29 [12:01:34] [Server thread/INFO]: SO LAGGY ;-; +2015-06-29 [12:01:35] [Server thread/INFO]: Crumplex left the game +2015-06-29 [12:01:35] [Server thread/INFO]: Crumplex[/73.5.179.208:50411] logged out due to timeout +2015-06-29 [12:01:38] [Server thread/INFO]: welcome all +2015-06-29 [12:01:41] [Server thread/INFO]: edgardme3 left the game +2015-06-29 [12:01:41] [Server thread/INFO]: edgardme3[/74.194.110.14:49347] logged out due to client disconnect +2015-06-29 [12:01:41] [Server thread/INFO]: playAAAA +2015-06-29 [12:01:41] [Server thread/INFO]: Bro_Yoshi left the game +2015-06-29 [12:01:41] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:63740] logged out due to client disconnect +2015-06-29 [12:01:42] [Server thread/INFO]: o its playa +2015-06-29 [12:01:46] [Server thread/INFO]: chiss here? +2015-06-29 [12:01:47] [Server thread/INFO]: hi rosa xD +2015-06-29 [12:01:49] [Server thread/INFO]: next to chat untold +2015-06-29 [12:01:51] [Server thread/INFO]: PizzaMan319[/24.112.237.66:39679] logged in with entity id 1888 at (world, 178.9114, 76, 103.5913) +2015-06-29 [12:01:53] [Server thread/INFO]: he is rosa +2015-06-29 [12:01:55] [Server thread/INFO]: where the chiss at +2015-06-29 [12:01:57] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [12:01:57] [Server thread/INFO]: Hello left the game +2015-06-29 [12:01:57] [Server thread/INFO]: Hello[/104.246.120.48:52048] logged out due to client disconnect +2015-06-29 [12:02:00] [Server thread/NOTICE]: Player data not found for "relyh", creating new profile +2015-06-29 [12:02:00] [Server thread/INFO]: Relyh[/184.167.84.193:64968] logged in with entity id 1890 at (world, 128, 62, 128) +2015-06-29 [12:02:05] [Server thread/INFO]: Relyh joined the game +2015-06-29 [12:02:07] [Server thread/INFO]: bye, hello +2015-06-29 [12:02:08] [Server thread/INFO]: Protect meh from teh zombizz +2015-06-29 [12:02:09] [Server thread/INFO]: using my old ign playa was taken... +2015-06-29 [12:02:09] [Server thread/INFO]: boo2300 left the game +2015-06-29 [12:02:09] [Server thread/INFO]: boo2300[/108.200.60.123:51768] logged out due to timeout +2015-06-29 [12:02:23] [Server thread/INFO]: gg +2015-06-29 [12:02:24] [Server thread/INFO]: this is cool +2015-06-29 [12:02:24] [Server thread/INFO]: chissling[/1.152.97.61:50323] logged in with entity id 1899 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:02:26] [Server thread/INFO]: test[/75.166.54.109:53603] logged in with entity id 1903 at (world, 128, 62, 128) +2015-06-29 [12:02:27] [Server thread/INFO]: Hello there Relyh +2015-06-29 [12:02:27] [Server thread/INFO]: Squidz left the game +2015-06-29 [12:02:27] [Server thread/INFO]: Squidz[/24.185.36.236:50934] logged out due to timeout +2015-06-29 [12:02:27] [Server thread/INFO]: BloodMiester left the game +2015-06-29 [12:02:27] [Server thread/INFO]: BloodMiester[/97.101.46.243:52411] logged out due to client disconnect +2015-06-29 [12:02:28] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:02:29] [Server thread/INFO]: test joined the game +2015-06-29 [12:02:29] [Server thread/INFO]: i made a tower. thats all i came here to do xD cya :p +2015-06-29 [12:02:34] [Server thread/INFO]: UntoldFury left the game +2015-06-29 [12:02:34] [Server thread/INFO]: UntoldFury[/98.222.79.234:46631] logged out due to client disconnect +2015-06-29 [12:02:38] [Server thread/INFO]: I remember when everyone said Playa sounded like a young Bypolarbear xD +2015-06-29 [12:02:38] [Server thread/INFO]: Interesting... +2015-06-29 [12:02:38] [Server thread/INFO]: Wait eho is chissling +2015-06-29 [12:02:39] [Server thread/INFO]: Snevok left the game +2015-06-29 [12:02:39] [Server thread/INFO]: Snevok[/12.219.54.122:37328] logged out due to timeout +2015-06-29 [12:02:42] [Server thread/INFO]: rlly..... that can happen in mcpe??? +2015-06-29 [12:02:43] [Server thread/INFO]: chiss +2015-06-29 [12:02:44] [Server thread/INFO]: who* +2015-06-29 [12:02:44] [Server thread/INFO]: someine help me make a house +2015-06-29 [12:02:54] [Server thread/NOTICE]: Player data not found for "squidz_", creating new profile +2015-06-29 [12:02:54] [Server thread/INFO]: Squidz_[/24.185.36.236:60183] logged in with entity id 1933 at (world, 128, 62, 128) +2015-06-29 [12:02:56] [Server thread/INFO]: Squidz_ joined the game +2015-06-29 [12:03:03] [Server thread/INFO]: nty +2015-06-29 [12:03:05] [Server thread/INFO]: * RosaEpicBeauty gets SrMod in QA +2015-06-29 [12:03:06] [Server thread/INFO]: relyh +2015-06-29 [12:03:07] [Server thread/INFO]: [Server] yes chiss here :) +2015-06-29 [12:03:07] [Server thread/INFO]: im so bad at this +2015-06-29 [12:03:08] [Server thread/INFO]: Can I has 4 gold blocks, 1 nether reactor and some cobble pls? +2015-06-29 [12:03:10] [Server thread/INFO]: xPixel[/24.29.95.166:52639] logged in with entity id 1982 at (world, 142.3778, 64, 125.8022) +2015-06-29 [12:03:11] [Server thread/INFO]: nope +2015-06-29 [12:03:12] [Server thread/INFO]: xPixel joined the game +2015-06-29 [12:03:14] [Server thread/INFO]: nice skin +2015-06-29 [12:03:16] [Server thread/INFO]: White_Hawk_7 fell from a high place +2015-06-29 [12:03:18] [Server thread/INFO]: hiiii Chissy +2015-06-29 [12:03:20] [Server thread/INFO]: kk baii +2015-06-29 [12:03:21] [Server thread/INFO]: OMG CHIS!!1!1!1!!!!1 +2015-06-29 [12:03:25] [Server thread/INFO]: the sand lag +2015-06-29 [12:03:26] [Server thread/INFO]: Steve[/71.176.42.138:64478] logged in with entity id 2013 at (world, 188.3428, 77, 85.3) +2015-06-29 [12:03:26] [Server thread/INFO]: meow +2015-06-29 [12:03:26] [Server thread/INFO]: Hybalt left the game +2015-06-29 [12:03:26] [Server thread/INFO]: Hybalt[/68.196.163.172:63069] logged out due to timeout +2015-06-29 [12:03:26] [Server thread/INFO]: * Lpnt test +2015-06-29 [12:03:28] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:03:29] [Server thread/INFO]: chiss :D +2015-06-29 [12:03:33] [Server thread/INFO]: Jaiw left the game +2015-06-29 [12:03:33] [Server thread/INFO]: Jaiw[/166.177.184.154:51814] logged out due to client disconnect +2015-06-29 [12:03:34] [Server thread/INFO]: xD so much lag +2015-06-29 [12:03:36] [Server thread/INFO]: timmy :-: +2015-06-29 [12:03:37] [Server thread/INFO]: Hybalt[/68.196.163.172:64185] logged in with entity id 2020 at (world, 182.9115, 77, 102.4559) +2015-06-29 [12:03:39] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [12:03:41] [Server thread/INFO]: * Inbnd does this work +2015-06-29 [12:03:45] [Server thread/INFO]: Haha. +2015-06-29 [12:03:46] [Server thread/INFO]: abby hi +2015-06-29 [12:03:49] [Server thread/INFO]: * Inbnd omg +2015-06-29 [12:03:49] [Server thread/INFO]: wowowowow bye timmy +2015-06-29 [12:03:51] [Server thread/INFO]: any of da admins here? +2015-06-29 [12:03:54] [Server thread/INFO]: dylwn hi +2015-06-29 [12:03:55] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:60207] logged in with entity id 2037 at (world, 128, 62, 128) +2015-06-29 [12:03:58] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:04:00] [Server thread/INFO]: relyh is here +2015-06-29 [12:04:00] [Server thread/INFO]: I love how Chiss cant announce himself like a normal person +2015-06-29 [12:04:01] [Server thread/INFO]: relyh +2015-06-29 [12:04:02] [Server thread/INFO]: SirBird fell from a high place +2015-06-29 [12:04:02] [Server thread/INFO]: ArcticZeroo left the game +2015-06-29 [12:04:02] [Server thread/INFO]: ArcticZeroo[/68.32.132.196:56094] logged out due to timeout +2015-06-29 [12:04:02] [Server thread/INFO]: * White_Hawk_7 ZOMFG +2015-06-29 [12:04:03] [Server thread/INFO]: Tort left the game +2015-06-29 [12:04:03] [Server thread/INFO]: Tort[/99.182.2.129:57976] logged out due to timeout +2015-06-29 [12:04:08] [Server thread/INFO]: A Moderator leaked this IP. +2015-06-29 [12:04:09] [Server thread/INFO]: ello bacon +2015-06-29 [12:04:11] [Server thread/INFO]: Hello! +2015-06-29 [12:04:12] [Server thread/INFO]: ohi +2015-06-29 [12:04:16] [Server thread/INFO]: OMG WHAT +2015-06-29 [12:04:22] [Server thread/INFO]: HOW DID I DIE +2015-06-29 [12:04:24] [Server thread/INFO]: BreadDubbs left the game +2015-06-29 [12:04:24] [Server thread/INFO]: BreadDubbs[/67.173.105.161:51301] logged out due to timeout +2015-06-29 [12:04:27] [Server thread/INFO]: Chiss asked to leak it lol +2015-06-29 [12:04:27] [Server thread/INFO]: ;-; +2015-06-29 [12:04:28] [Server thread/INFO]: how did hybalt get in here? +2015-06-29 [12:04:32] [Server thread/INFO]: ez +2015-06-29 [12:04:36] [Server thread/INFO]: ur steve skin is amazin +2015-06-29 [12:04:42] [Server thread/INFO]: I am legend on mineplex +2015-06-29 [12:04:43] [Server thread/INFO]: playa get a skin your alex +2015-06-29 [12:04:47] [Server thread/INFO]: there is no whitelist +2015-06-29 [12:05:00] [Server thread/INFO]: ill get a skin soon +2015-06-29 [12:05:05] [Server thread/INFO]: Im_Destro left the game +2015-06-29 [12:05:05] [Server thread/INFO]: Im_Destro[/86.149.19.74:49926] logged out due to client disconnect +2015-06-29 [12:05:05] [Server thread/INFO]: JennaSwag[/73.18.119.179:60142] logged in with entity id 2163 at (world, 128, 62, 128) +2015-06-29 [12:05:06] [Server thread/INFO]: There isn't supposed to be a whitelist +2015-06-29 [12:05:06] [Server thread/INFO]: thx Abby. your alex one is gr8 +2015-06-29 [12:05:07] [Server thread/INFO]: JennaSwag joined the game +2015-06-29 [12:05:10] [Server thread/INFO]: ohi pika c: +2015-06-29 [12:05:12] [Server thread/INFO]: thx +2015-06-29 [12:05:14] [Server thread/INFO]: AlphaRaptor left the game +2015-06-29 [12:05:14] [Server thread/INFO]: AlphaRaptor[/99.149.26.83:63889] logged out due to client disconnect +2015-06-29 [12:05:15] [Server thread/INFO]: ArcticZeroo[/68.32.132.196:51570] logged in with entity id 2186 at (world, 118.3, 63, 169.7) +2015-06-29 [12:05:17] [Server thread/INFO]: ArcticZeroo joined the game +2015-06-29 [12:05:17] [Server thread/INFO]: it's public, everyone / anyone can join +2015-06-29 [12:05:22] [Server thread/INFO]: I think anyone can join +2015-06-29 [12:05:22] [Server thread/INFO]: Chiss is letting everyone in +2015-06-29 [12:05:24] [Server thread/INFO]: how do you get a skin xD +2015-06-29 [12:05:29] [Server thread/INFO]: boo2300[/108.200.60.123:65389] logged in with entity id 2203 at (world, 92.0661, 65, 21.6492) +2015-06-29 [12:05:32] [Server thread/INFO]: boo2300 joined the game +2015-06-29 [12:05:37] [Server thread/INFO]: its so dark, nvm +2015-06-29 [12:05:38] [Server thread/INFO]: thiz is confusing +2015-06-29 [12:05:42] [Server thread/INFO]: why no autocorrect +2015-06-29 [12:05:44] [Server thread/INFO]: If this is going to be a thing, how would permssions work? +2015-06-29 [12:05:45] [Server thread/INFO]: why +2015-06-29 [12:05:48] [Server thread/INFO]: rekt abby +2015-06-29 [12:05:49] [Server thread/INFO]: the lag gudejiefheuvgedjnedgyec +2015-06-29 [12:05:53] [Server thread/INFO]: plugins duh +2015-06-29 [12:05:57] [Server thread/INFO]: <15Ibans> yel +2015-06-29 [12:05:58] [Server thread/INFO]: wait +2015-06-29 [12:06:01] [Server thread/INFO]: JennaSwag left the game +2015-06-29 [12:06:01] [Server thread/INFO]: JennaSwag[/73.18.119.179:60142] logged out due to client disconnect +2015-06-29 [12:06:02] [Server thread/INFO]: is this +2015-06-29 [12:06:02] [Server thread/INFO]: they have PE plugins? +2015-06-29 [12:06:08] [Server thread/INFO]: Cool +2015-06-29 [12:06:09] [Server thread/INFO]: Lpnt there are PE plugins. +2015-06-29 [12:06:10] [Server thread/INFO]: CLANZ!!??!???!!??? +2015-06-29 [12:06:10] [Server thread/INFO]: Yah +2015-06-29 [12:06:11] [Server thread/INFO]: IBANNNN +2015-06-29 [12:06:11] [Server thread/INFO]: yes +2015-06-29 [12:06:11] [Server thread/INFO]: yes type /plugins +2015-06-29 [12:06:12] [Server thread/INFO]: HEYYY +2015-06-29 [12:06:15] [Server thread/INFO]: its lab +2015-06-29 [12:06:20] [Server thread/INFO]: look at what u did +2015-06-29 [12:06:21] [Server thread/INFO]: relyh you are glitching out on my screen +2015-06-29 [12:06:21] [Server thread/INFO]: JoeSwanson left the game +2015-06-29 [12:06:21] [Server thread/INFO]: JoeSwanson[/70.125.6.183:60754] logged out due to client disconnect +2015-06-29 [12:06:21] [Server thread/INFO]: xPixel left the game +2015-06-29 [12:06:21] [Server thread/INFO]: xPixel[/24.29.95.166:52639] logged out due to timeout +2015-06-29 [12:06:22] [Server thread/INFO]: There are PE block hunt servers xD +2015-06-29 [12:06:28] [Server thread/INFO]: lol whoops +2015-06-29 [12:06:32] [Server thread/INFO]: Immovable fell from a high place +2015-06-29 [12:06:32] [Server thread/INFO]: Steve left the game +2015-06-29 [12:06:32] [Server thread/INFO]: Steve[/71.176.42.138:64478] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:06:32] [Server thread/INFO]: Steve[/50.157.68.230:63936] logged in with entity id 2343 at (world, 223.4646, 73, 211.8343) +2015-06-29 [12:06:35] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:06:38] [Server thread/INFO]: bswardx died +2015-06-29 [12:06:38] [Server thread/INFO]: .,;,;,. +2015-06-29 [12:06:40] [Server thread/INFO]: Steve left the game +2015-06-29 [12:06:40] [Server thread/INFO]: Steve[/50.157.68.230:63936] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:06:40] [Server thread/INFO]: Steve[/71.176.42.138:57719] logged in with entity id 2358 at (world, 223.4646, 73, 211.8343) +2015-06-29 [12:06:41] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [12:06:41] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:60207] logged out due to timeout +2015-06-29 [12:06:43] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:06:43] [Server thread/INFO]: TheMegaTony left the game +2015-06-29 [12:06:43] [Server thread/INFO]: TheMegaTony[/78.1.31.84:51874] logged out due to client disconnect +2015-06-29 [12:06:45] [Server thread/INFO]: millenium200 left the game +2015-06-29 [12:06:45] [Server thread/INFO]: millenium200[/65.189.205.183:49086] logged out due to timeout +2015-06-29 [12:06:46] [Server thread/INFO]: millenium201 left the game +2015-06-29 [12:06:46] [Server thread/INFO]: millenium201[/65.189.205.183:42185] logged out due to timeout +2015-06-29 [12:06:49] [Server thread/INFO]: abby its dark +2015-06-29 [12:06:50] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11676] logged in with entity id 2375 at (world, 159.3893, 66.42, 131.6643) +2015-06-29 [12:06:52] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:06:52] [Server thread/INFO]: test left the game +2015-06-29 [12:06:52] [Server thread/INFO]: test[/75.166.54.109:53603] logged out due to timeout +2015-06-29 [12:06:52] [Server thread/INFO]: Odd. +2015-06-29 [12:06:54] [Server thread/INFO]: yea +2015-06-29 [12:06:55] [Server thread/NOTICE]: Player data not found for "ezypzy", creating new profile +2015-06-29 [12:06:55] [Server thread/INFO]: Ezypzy[/50.157.68.230:56862] logged in with entity id 2377 at (world, 128, 62, 128) +2015-06-29 [12:06:57] [Server thread/INFO]: Ezypzy joined the game +2015-06-29 [12:06:57] [Server thread/INFO]: Squidz_ left the game +2015-06-29 [12:06:57] [Server thread/INFO]: Squidz_[/24.185.36.236:60183] logged out due to timeout +2015-06-29 [12:07:01] [Server thread/INFO]: AlphaRaptor[/99.149.26.83:58383] logged in with entity id 2384 at (world, 169.3, 69, 112.7) +2015-06-29 [12:07:01] [Server thread/INFO]: thx sherlock +2015-06-29 [12:07:03] [Server thread/INFO]: AlphaRaptor joined the game +2015-06-29 [12:07:03] [Server thread/INFO]: I'd imagine Dragon Escape in this XD +2015-06-29 [12:07:07] [Server thread/INFO]: Immovable fell from a high place +2015-06-29 [12:07:10] [Server thread/INFO]: no problem abby +2015-06-29 [12:07:16] [Server thread/INFO]: [Server] jumping is too hard for dragon escape :P +2015-06-29 [12:07:22] [Server thread/INFO]: JoeSwanson[/70.125.6.183:33750] logged in with entity id 2395 at (world, 134.7, 74, 183.5412) +2015-06-29 [12:07:22] [Server thread/INFO]: Squidz_[/24.185.36.236:51825] logged in with entity id 2396 at (world, 67.4669, 73.0549, 256.3) +2015-06-29 [12:07:24] [Server thread/INFO]: Squidz_ joined the game +2015-06-29 [12:07:24] [Server thread/INFO]: JoeSwanson joined the game +2015-06-29 [12:07:27] [Server thread/INFO]: hi chis +2015-06-29 [12:07:31] [Server thread/INFO]: [Server] things like runner, colored floor game, block hunt +2015-06-29 [12:07:31] [Server thread/INFO]: oi m8s hi Chiss you know me +2015-06-29 [12:07:31] [Server thread/INFO]: Agreed +2015-06-29 [12:07:34] [Server thread/INFO]: [Server] simpler things would be better +2015-06-29 [12:07:37] [Server thread/INFO]: Talk like a normsl person Chiss xD +2015-06-29 [12:07:37] [Server thread/INFO]: so when exactly does this end +2015-06-29 [12:07:38] [Server thread/INFO]: Immovable drowned +2015-06-29 [12:07:40] [Server thread/INFO]: JoeSwanson left the game +2015-06-29 [12:07:40] [Server thread/INFO]: JoeSwanson[/70.125.6.183:33750] logged out due to client disconnect +2015-06-29 [12:07:40] [Server thread/INFO]: chiss has spoken +2015-06-29 [12:07:43] [Server thread/INFO]: Squidz_ left the game +2015-06-29 [12:07:43] [Server thread/INFO]: Squidz_[/24.185.36.236:51825] logged out due to timeout +2015-06-29 [12:07:46] [Server thread/INFO]: omg BH pls +2015-06-29 [12:07:47] [Server thread/INFO]: clans would be good +2015-06-29 [12:07:48] [Server thread/INFO]: RELEASE CLANS NOW +2015-06-29 [12:07:51] [Server thread/INFO]: ironmanmatt2000 left the game +2015-06-29 [12:07:51] [Server thread/INFO]: ironmanmatt2000[/99.25.233.187:65434] logged out due to timeout +2015-06-29 [12:07:52] [Server thread/INFO]: mineplex has now slowly takin over from pc to pe xD +2015-06-29 [12:07:53] [Server thread/INFO]: Haha. +2015-06-29 [12:07:59] [Server thread/INFO]: Would it be possible to make DT? +2015-06-29 [12:08:01] [Server thread/INFO]: So you're making a Mineplex PE? O.o +2015-06-29 [12:08:02] [Server thread/INFO]: would you still be able to double jump in hub ? +2015-06-29 [12:08:05] [Server thread/INFO]: edgardme3[/74.194.110.14:47285] logged in with entity id 2422 at (world, 142.0476, 65, 123.6099) +2015-06-29 [12:08:05] [Server thread/INFO]: LightningJulian left the game +2015-06-29 [12:08:05] [Server thread/INFO]: LightningJulian[/74.90.100.55:37350] logged out due to timeout +2015-06-29 [12:08:06] [Server thread/INFO]: Steve left the game +2015-06-29 [12:08:06] [Server thread/INFO]: Steve[/71.176.42.138:57719] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:08:06] [Server thread/INFO]: Steve[/76.24.97.95:64490] logged in with entity id 2425 at (world, 196.3, 84.0244, 179.7) +2015-06-29 [12:08:06] [Server thread/INFO]: How about UHC? oh wait, it's already UHC in here +2015-06-29 [12:08:07] [Server thread/INFO]: abby i blame you for this +2015-06-29 [12:08:07] [Server thread/INFO]: you can play minecraft PE on pc +2015-06-29 [12:08:09] [Server thread/INFO]: edgardme3 joined the game +2015-06-29 [12:08:09] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:08:09] [Server thread/INFO]: Squidz_[/24.185.36.236:54871] logged in with entity id 2429 at (world, 61.0589, 73.1, 257.7) +2015-06-29 [12:08:11] [Server thread/INFO]: Steve left the game +2015-06-29 [12:08:11] [Server thread/INFO]: Steve[/76.24.97.95:64490] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:08:11] [Server thread/INFO]: Steve[/71.176.42.138:65347] logged in with entity id 2432 at (world, 196.3, 83, 179.7) +2015-06-29 [12:08:12] [Server thread/INFO]: RosaEpicBeauty left the game +2015-06-29 [12:08:12] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:61249] logged out due to timeout +2015-06-29 [12:08:14] [Server thread/INFO]: Turf wars can be acceptable. Micro battle too +2015-06-29 [12:08:16] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:52740] logged in with entity id 2438 at (world, 117.677, 71, 176.5254) +2015-06-29 [12:08:19] [Server thread/INFO]: wow u were rhe one who fell in +2015-06-29 [12:08:21] [Server thread/INFO]: Ezypzy left the game +2015-06-29 [12:08:21] [Server thread/INFO]: Ezypzy[/50.157.68.230:56862] logged out due to client disconnect +2015-06-29 [12:08:25] [Server thread/INFO]: naw abby +2015-06-29 [12:08:26] [Server thread/INFO]: Squidz_ joined the game +2015-06-29 [12:08:26] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:08:27] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [12:08:28] [Server thread/INFO]: omq sg!!1!!1! +2015-06-29 [12:08:29] [Server thread/INFO]: JoeSwanson[/70.125.6.183:49278] logged in with entity id 2452 at (world, 137.2311, 75, 180.9335) +2015-06-29 [12:08:32] [Server thread/INFO]: JoeSwanson joined the game +2015-06-29 [12:08:37] [Server thread/INFO]: oitq XD +2015-06-29 [12:08:39] [Server thread/INFO]: stop kickimg us ughhh +2015-06-29 [12:08:42] [Server thread/INFO]: Immovable left the game +2015-06-29 [12:08:42] [Server thread/INFO]: Immovable[/184.163.201.200:50636] logged out due to timeout +2015-06-29 [12:08:43] [Server thread/INFO]: Pyzen left the game +2015-06-29 [12:08:43] [Server thread/INFO]: Pyzen[/108.81.233.128:63669] logged out due to client disconnect +2015-06-29 [12:08:45] [Server thread/NOTICE]: Player data not found for "fantasticps3", creating new profile +2015-06-29 [12:08:45] [Server thread/INFO]: fantasticps3[/76.24.97.95:56992] logged in with entity id 2468 at (world, 128, 62, 128) +2015-06-29 [12:08:48] [Server thread/INFO]: fantasticps3 joined the game +2015-06-29 [12:08:50] [Server thread/INFO]: someone get me out +2015-06-29 [12:08:55] [Server thread/INFO]: Steve fell from a high place +2015-06-29 [12:08:56] [Server thread/INFO]: edgardme3 left the game +2015-06-29 [12:08:56] [Server thread/INFO]: edgardme3[/74.194.110.14:47285] logged out due to client disconnect +2015-06-29 [12:08:58] [Server thread/INFO]: Come on Staff-1 stahp crashing +2015-06-29 [12:08:58] [Server thread/INFO]: Steve left the game +2015-06-29 [12:08:58] [Server thread/INFO]: Steve[/71.176.42.138:65347] logged out due to client disconnect +2015-06-29 [12:08:59] [Server thread/INFO]: Relyh left the game +2015-06-29 [12:08:59] [Server thread/INFO]: Relyh[/184.167.84.193:64968] logged out due to client disconnect +2015-06-29 [12:08:59] [Server thread/INFO]: YOU ARE STEVE. Change the name in settings +2015-06-29 [12:09:05] [Server thread/INFO]: dylan is makinf me scarws +2015-06-29 [12:09:06] [Server thread/INFO]: do i count as staff? ;) +2015-06-29 [12:09:08] [Server thread/INFO]: i am trapped in a hole with abby +2015-06-29 [12:09:09] [Server thread/INFO]: Anybody with the name of Steve will be kicked +2015-06-29 [12:09:11] [Server thread/NOTICE]: Player data not found for "labrdr_", creating new profile +2015-06-29 [12:09:11] [Server thread/INFO]: Labrdr_[/71.176.42.138:62373] logged in with entity id 2511 at (world, 128, 62, 128) +2015-06-29 [12:09:17] [Server thread/INFO]: JoeSwanson left the game +2015-06-29 [12:09:17] [Server thread/INFO]: JoeSwanson[/70.125.6.183:49278] logged out due to client disconnect +2015-06-29 [12:09:20] [Server thread/INFO]: Labrdr_ joined the game +2015-06-29 [12:09:20] [Server thread/INFO]: why? +2015-06-29 [12:09:20] [Server thread/INFO]: help dylan is scary +2015-06-29 [12:09:23] [Server thread/NOTICE]: Player data not found for "samitod", creating new profile +2015-06-29 [12:09:23] [Server thread/INFO]: SamitoD[/184.167.84.193:54392] logged in with entity id 2532 at (world, 128, 62, 128) +2015-06-29 [12:09:25] [Server thread/INFO]: SamitoD joined the game +2015-06-29 [12:09:26] [Server thread/INFO]: abby why did you do this again? +2015-06-29 [12:09:29] [Server thread/INFO]: I like walruses +2015-06-29 [12:09:29] [Server thread/INFO]: epicbluej left the game +2015-06-29 [12:09:29] [Server thread/INFO]: epicbluej[/173.20.33.223:51484] logged out due to timeout +2015-06-29 [12:09:33] [Server thread/INFO]: Samito. +2015-06-29 [12:09:36] [Server thread/INFO]: u fell in +2015-06-29 [12:09:37] [Server thread/INFO]: ohai samito +2015-06-29 [12:09:41] [Server thread/INFO]: samito unblock me +2015-06-29 [12:09:45] [Server thread/INFO]: CLANZZZ????????? +2015-06-29 [12:09:45] [Server thread/INFO]: O.o SirBird...d... I've never seen you like this before... You've changed ;-; xD +2015-06-29 [12:09:49] [Server thread/INFO]: prove it abby +2015-06-29 [12:09:53] [Server thread/INFO]: someone get me out +2015-06-29 [12:09:53] [Server thread/INFO]: ? +2015-06-29 [12:09:55] [Server thread/INFO]: omfg i need an ipad or something +2015-06-29 [12:09:59] [Server thread/INFO]: Steve[/100.34.79.36:52408] logged in with entity id 2548 at (world, 193.2612, 68, 179.0524) +2015-06-29 [12:10:04] [Server thread/INFO]: sam is eZ +2015-06-29 [12:10:05] [Server thread/INFO]: CLANZ +2015-06-29 [12:10:07] [Server thread/INFO]: dylan is makinf me uncomfortablw +2015-06-29 [12:10:07] [Server thread/INFO]: CLAMZ +2015-06-29 [12:10:11] [Server thread/INFO]: LOOOOLL +2015-06-29 [12:10:14] [Server thread/INFO]: Ah, I was accidentally using caps :P +2015-06-29 [12:10:15] [Server thread/INFO]: 4 stacks of dirt +2015-06-29 [12:10:15] [Server thread/INFO]: get an old tv and it'll do the job XD +2015-06-29 [12:10:18] [Server thread/INFO]: CLANZ +2015-06-29 [12:10:20] [Server thread/INFO]: abby pls +2015-06-29 [12:10:24] [Server thread/INFO]: [Server] ok +2015-06-29 [12:10:25] [Server thread/INFO]: CLANZ +2015-06-29 [12:10:26] [Server thread/INFO]: AlphaRaptor fell from a high place +2015-06-29 [12:10:27] [Server thread/INFO]: CLANZ +2015-06-29 [12:10:27] [Server thread/INFO]: [Server] can leave now :) +2015-06-29 [12:10:28] [Server thread/INFO]: [Server] thanks +2015-06-29 [12:10:29] [Server thread/INFO]: CLANZ +2015-06-29 [12:10:33] [Server thread/INFO]: bye +2015-06-29 [12:10:33] [Server thread/INFO]: I love mineplex it is my favourite +2015-06-29 [12:10:36] [Server thread/INFO]: Is hthis nfinite? +2015-06-29 [12:10:37] [Server thread/INFO]: CLANZZZZZZ??????????????? +2015-06-29 [12:10:39] [Server thread/INFO]: ^ +2015-06-29 [12:10:42] [Server thread/INFO]: I am not banned or anythinf HAHAHAHAHAHAHA +2015-06-29 [12:10:42] [Server thread/INFO]: Ton left the game +2015-06-29 [12:10:42] [Server thread/INFO]: Ton[/99.117.132.36:61477] logged out due to client disconnect +2015-06-29 [12:10:43] [Server thread/INFO]: JASA +2015-06-29 [12:10:44] [Server thread/INFO]: meow meow +2015-06-29 [12:10:44] [Server thread/INFO]: AA +2015-06-29 [12:10:44] [Server thread/INFO]: S +2015-06-29 [12:10:45] [Server thread/INFO]: AS +2015-06-29 [12:10:45] [Server thread/INFO]: S +2015-06-29 [12:10:46] [Server thread/INFO]: KCGraphics[/68.190.243.10:51969] logged in with entity id 2560 at (world, 185.5165, 78, 97.8805) +2015-06-29 [12:10:46] [Server thread/INFO]: A +2015-06-29 [12:10:46] [Server thread/INFO]: SS +2015-06-29 [12:10:46] [Server thread/INFO]: AlphaRaptor left the game +2015-06-29 [12:10:46] [Server thread/INFO]: AlphaRaptor[/99.149.26.83:58383] logged out due to client disconnect +2015-06-29 [12:10:47] [Server thread/INFO]: S +2015-06-29 [12:10:47] [Server thread/INFO]: D +2015-06-29 [12:10:48] [Server thread/INFO]: F +2015-06-29 [12:10:48] [Server thread/INFO]: C +2015-06-29 [12:10:49] [Server thread/INFO]: W +2015-06-29 [12:10:49] [Server thread/INFO]: Mineplex PE sounds amazing! :D +2015-06-29 [12:10:49] [Server thread/INFO]: D +2015-06-29 [12:10:50] [Server thread/INFO]: F +2015-06-29 [12:10:50] [Server thread/INFO]: SW +2015-06-29 [12:10:51] [Server thread/INFO]: D +2015-06-29 [12:10:51] [Server thread/INFO]: F +2015-06-29 [12:10:51] [Server thread/INFO]: k +2015-06-29 [12:10:52] [Server thread/INFO]: B +2015-06-29 [12:10:52] [Server thread/INFO]: B +2015-06-29 [12:10:53] [Server thread/INFO]: S +2015-06-29 [12:10:53] [Server thread/INFO]: S +2015-06-29 [12:10:54] [Server thread/INFO]: oh +2015-06-29 [12:10:54] [Server thread/INFO]: CF +2015-06-29 [12:10:54] [Server thread/INFO]: D +2015-06-29 [12:10:55] [Server thread/INFO]: SS +2015-06-29 [12:10:55] [Server thread/INFO]: D +2015-06-29 [12:10:56] [Server thread/INFO]: F +2015-06-29 [12:10:56] [Server thread/INFO]: F +2015-06-29 [12:10:57] [Server thread/INFO]: W +2015-06-29 [12:10:57] [Server thread/INFO]: ./clan +2015-06-29 [12:10:57] [Server thread/INFO]: pls no spam +2015-06-29 [12:10:57] [Server thread/INFO]: W +2015-06-29 [12:10:57] [Server thread/INFO]: Bruh +2015-06-29 [12:10:58] [Server thread/INFO]: F +2015-06-29 [12:10:58] [Server thread/INFO]: G +2015-06-29 [12:10:58] [Server thread/INFO]: hes a former mod +2015-06-29 [12:10:59] [Server thread/INFO]: E +2015-06-29 [12:10:59] [Server thread/INFO]: W +2015-06-29 [12:10:59] [Server thread/INFO]: k same +2015-06-29 [12:11:00] [Server thread/INFO]: F +2015-06-29 [12:11:00] [Server thread/INFO]: F +2015-06-29 [12:11:01] [Server thread/INFO]: D +2015-06-29 [12:11:01] [Server thread/INFO]: S +2015-06-29 [12:11:02] [Server thread/INFO]: DF +2015-06-29 [12:11:02] [Server thread/INFO]: F +2015-06-29 [12:11:02] [Server thread/INFO]: KCGraphics[/68.190.243.10:51969] logged out due to timeout +2015-06-29 [12:11:02] [Server thread/INFO]: ehat r u doing +2015-06-29 [12:11:03] [Server thread/INFO]: H +2015-06-29 [12:11:03] [Server thread/INFO]: J +2015-06-29 [12:11:04] [Server thread/INFO]: U +2015-06-29 [12:11:04] [Server thread/INFO]: PLS MY EYES THEY HURT +2015-06-29 [12:11:04] [Server thread/INFO]: H +2015-06-29 [12:11:05] [Server thread/INFO]: F +2015-06-29 [12:11:09] [Server thread/INFO]: i blame abby +2015-06-29 [12:11:10] [Server thread/INFO]: OOPS MY CAT +2015-06-29 [12:11:11] [Server thread/INFO]: MASTER DOMINATIR +2015-06-29 [12:11:11] [Server thread/INFO]: DD +2015-06-29 [12:11:12] [Server thread/INFO]: G +2015-06-29 [12:11:12] [Server thread/INFO]: fanta please refrain from spamming! +2015-06-29 [12:11:12] [Server thread/INFO]: G +2015-06-29 [12:11:13] [Server thread/INFO]: X +2015-06-29 [12:11:13] [Server thread/INFO]: F +2015-06-29 [12:11:13] [Server thread/INFO]: CLANZZZZ +2015-06-29 [12:11:14] [Server thread/INFO]: E +2015-06-29 [12:11:14] [Server thread/INFO]: F +2015-06-29 [12:11:15] [Server thread/INFO]: J +2015-06-29 [12:11:15] [Server thread/INFO]: JoePCool14 left the game +2015-06-29 [12:11:15] [Server thread/INFO]: JoePCool14[/108.79.4.225:35096] logged out due to timeout +2015-06-29 [12:11:15] [Server thread/INFO]: V +2015-06-29 [12:11:15] [Server thread/INFO]: C +2015-06-29 [12:11:16] [Server thread/INFO]: S +2015-06-29 [12:11:16] [Server thread/INFO]: F +2015-06-29 [12:11:16] [Server thread/INFO]: L +2015-06-29 [12:11:17] [Server thread/INFO]: D +2015-06-29 [12:11:18] [Server thread/INFO]: S +2015-06-29 [12:11:18] [Server thread/INFO]: A +2015-06-29 [12:11:19] [Server thread/INFO]: C +2015-06-29 [12:11:19] [Server thread/INFO]: D +2015-06-29 [12:11:20] [Server thread/INFO]: D +2015-06-29 [12:11:20] [Server thread/INFO]: D +2015-06-29 [12:11:21] [Server thread/INFO]: F +2015-06-29 [12:11:21] [Server thread/INFO]: G +2015-06-29 [12:11:22] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:11:22] [Server thread/INFO]: U +2015-06-29 [12:11:22] [Server thread/INFO]: U +2015-06-29 [12:11:23] [Server thread/INFO]: G +2015-06-29 [12:11:23] [Server thread/INFO]: F +2015-06-29 [12:11:24] [Server thread/INFO]: D +2015-06-29 [12:11:24] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [12:11:24] [Server thread/INFO]: PizzaMan319[/24.112.237.66:39679] logged out due to client disconnect +2015-06-29 [12:11:24] [Server thread/INFO]: F +2015-06-29 [12:11:25] [Server thread/INFO]: G +2015-06-29 [12:11:25] [Server thread/INFO]: G +2015-06-29 [12:11:27] [Server thread/INFO]: CLANZZZZZ +2015-06-29 [12:11:30] [Server thread/INFO]: Kick / Blacklist him +2015-06-29 [12:11:32] [Server thread/INFO]: MOM STOP SPAMMING +2015-06-29 [12:11:33] [Server thread/INFO]: D +2015-06-29 [12:11:33] [Server thread/INFO]: D +2015-06-29 [12:11:33] [Server thread/INFO]: MystiQueyQ left the game +2015-06-29 [12:11:33] [Server thread/INFO]: MystiQueyQ[/99.140.165.230:58506] logged out due to timeout +2015-06-29 [12:11:34] [Server thread/INFO]: F +2015-06-29 [12:11:34] [Server thread/INFO]: G +2015-06-29 [12:11:35] [Server thread/INFO]: S +2015-06-29 [12:11:35] [Server thread/INFO]: D +2015-06-29 [12:11:35] [Server thread/INFO]: o.0 +2015-06-29 [12:11:36] [Server thread/INFO]: S +2015-06-29 [12:11:36] [Server thread/INFO]: D +2015-06-29 [12:11:37] [Server thread/INFO]: G +2015-06-29 [12:11:37] [Server thread/INFO]: D +2015-06-29 [12:11:38] [Server thread/INFO]: D +2015-06-29 [12:11:38] [Server thread/INFO]: F +2015-06-29 [12:11:39] [Server thread/INFO]: D +2015-06-29 [12:11:39] [Server thread/INFO]: S +2015-06-29 [12:11:40] [Server thread/INFO]: D +2015-06-29 [12:11:40] [Server thread/INFO]: F +2015-06-29 [12:11:41] [Server thread/INFO]: S +2015-06-29 [12:11:41] [Server thread/INFO]: S +2015-06-29 [12:11:42] [Server thread/INFO]: F +2015-06-29 [12:11:42] [Server thread/INFO]: F +2015-06-29 [12:11:43] [Server thread/INFO]: G +2015-06-29 [12:11:43] [Server thread/INFO]: Ezypzy[/50.157.68.230:51885] logged in with entity id 2580 at (world, 145.4848, 66.0192, 116.384) +2015-06-29 [12:11:43] [Server thread/INFO]: F +2015-06-29 [12:11:44] [Server thread/INFO]: D +2015-06-29 [12:11:44] [Server thread/INFO]: D +2015-06-29 [12:11:45] [Server thread/INFO]: D +2015-06-29 [12:11:45] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [12:11:45] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11676] logged out due to timeout +2015-06-29 [12:11:45] [Server thread/INFO]: S +2015-06-29 [12:11:46] [Server thread/INFO]: A +2015-06-29 [12:11:46] [Server thread/INFO]: A +2015-06-29 [12:11:47] [Server thread/INFO]: F +2015-06-29 [12:11:47] [Server thread/INFO]: G +2015-06-29 [12:11:48] [Server thread/INFO]: G +2015-06-29 [12:11:48] [Server thread/INFO]: G +2015-06-29 [12:11:49] [Server thread/INFO]: D +2015-06-29 [12:11:49] [Server thread/INFO]: S +2015-06-29 [12:11:50] [Server thread/INFO]: S +2015-06-29 [12:11:50] [Server thread/INFO]: D +2015-06-29 [12:11:51] [Server thread/INFO]: G +2015-06-29 [12:11:51] [Server thread/INFO]: G +2015-06-29 [12:11:51] [Server thread/INFO]: hi. its Swimmer_ +2015-06-29 [12:11:52] [Server thread/INFO]: Ezypzy joined the game +2015-06-29 [12:11:52] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:62375] logged in with entity id 2592 at (world, 488.5446, 67, 97.2837) +2015-06-29 [12:11:52] [Server thread/INFO]: GOROS +2015-06-29 [12:11:52] [Server thread/INFO]: S +2015-06-29 [12:11:53] [Server thread/INFO]: D +2015-06-29 [12:11:53] [Server thread/INFO]: Help us chiss! +2015-06-29 [12:11:53] [Server thread/INFO]: E +2015-06-29 [12:11:54] [Server thread/INFO]: White_Hawk_7 fell from a high place +2015-06-29 [12:11:54] [Server thread/INFO]: D +2015-06-29 [12:11:54] [Server thread/INFO]: SD +2015-06-29 [12:11:55] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:11:55] [Server thread/INFO]: D +2015-06-29 [12:11:55] [Server thread/INFO]: D +2015-06-29 [12:11:55] [Server thread/INFO]: i think fantasticps isnt staff... chiss plz +2015-06-29 [12:11:56] [Server thread/INFO]: D +2015-06-29 [12:11:56] [Server thread/INFO]: S +2015-06-29 [12:11:57] [Server thread/INFO]: V +2015-06-29 [12:11:57] [Server thread/INFO]: G +2015-06-29 [12:11:58] [Server thread/INFO]: F +2015-06-29 [12:11:58] [Server thread/INFO]: F +2015-06-29 [12:11:59] [Server thread/INFO]: F +2015-06-29 [12:11:59] [Server thread/INFO]: D +2015-06-29 [12:12:00] [Server thread/NOTICE]: Player data not found for "greencreeper138", creating new profile +2015-06-29 [12:12:00] [Server thread/INFO]: greencreeper138[/50.149.17.203:65469] logged in with entity id 2596 at (world, 128, 62, 128) +2015-06-29 [12:12:00] [Server thread/INFO]: SamitoD left the game +2015-06-29 [12:12:00] [Server thread/INFO]: SamitoD[/184.167.84.193:54392] logged out due to timeout +2015-06-29 [12:12:02] [Server thread/INFO]: bye peeps (abby is bad) +2015-06-29 [12:12:02] [Server thread/INFO]: D +2015-06-29 [12:12:02] [Server thread/INFO]: D +2015-06-29 [12:12:03] [Server thread/INFO]: GPF +2015-06-29 [12:12:03] [Server thread/INFO]: S +2015-06-29 [12:12:04] [Server thread/INFO]: CPDLX +2015-06-29 [12:12:04] [Server thread/INFO]: S +2015-06-29 [12:12:05] [Server thread/INFO]: F +2015-06-29 [12:12:05] [Server thread/INFO]: G +2015-06-29 [12:12:06] [Server thread/INFO]: Q +2015-06-29 [12:12:06] [Server thread/INFO]: hes a former mod lol +2015-06-29 [12:12:06] [Server thread/INFO]: d +2015-06-29 [12:12:07] [Server thread/INFO]: f +2015-06-29 [12:12:07] [Server thread/INFO]: r +2015-06-29 [12:12:08] [Server thread/INFO]: a +2015-06-29 [12:12:08] [Server thread/INFO]: a +2015-06-29 [12:12:09] [Server thread/INFO]: v +2015-06-29 [12:12:09] [Server thread/INFO]: f +2015-06-29 [12:12:09] [Server thread/INFO]: No, what made you say thst? xD +2015-06-29 [12:12:10] [Server thread/INFO]: FlippinPiggeh left the game +2015-06-29 [12:12:10] [Server thread/INFO]: FlippinPiggeh[/135.0.229.178:59696] logged out due to client disconnect +2015-06-29 [12:12:10] [Server thread/INFO]: d +2015-06-29 [12:12:10] [Server thread/INFO]: f +2015-06-29 [12:12:11] [Server thread/INFO]: Can we remove him or something pls <3 +2015-06-29 [12:12:11] [Server thread/INFO]: fantasticps3 left the game +2015-06-29 [12:12:11] [Server thread/INFO]: fantasticps3[/76.24.97.95:56992] logged out due to Kicked by admin. +2015-06-29 [12:12:11] [Server thread/INFO]: [CONSOLE: Kicked fantasticps3 from the game] +2015-06-29 [12:12:14] [Server thread/INFO]: Chiss how will punishments work on here? +2015-06-29 [12:12:16] [Server thread/NOTICE]: Player data not found for "xflare_", creating new profile +2015-06-29 [12:12:16] [Server thread/INFO]: xFlare_[/108.173.172.41:62065] logged in with entity id 2597 at (world, 128, 62, 128) +2015-06-29 [12:12:20] [Server thread/INFO]: crafterthatcraft left the game +2015-06-29 [12:12:20] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:58325] logged out due to timeout +2015-06-29 [12:12:20] [Server thread/INFO]: hi[/76.238.236.217:55273] logged out due to Outdated client! +2015-06-29 [12:12:21] [Server thread/INFO]: like /p +2015-06-29 [12:12:23] [Server thread/INFO]: Steve left the game +2015-06-29 [12:12:23] [Server thread/INFO]: Steve[/100.34.79.36:52408] logged out due to client disconnect +2015-06-29 [12:12:24] [Server thread/INFO]: fantasticps3[/76.24.97.95:62732] logged in with entity id 2602 at (world, 136.9146, 76, 205.1426) +2015-06-29 [12:12:28] [Server thread/INFO]: Ezypzy left the game +2015-06-29 [12:12:28] [Server thread/INFO]: Ezypzy[/50.157.68.230:51885] logged out due to timeout +2015-06-29 [12:12:30] [Server thread/INFO]: [CONSOLE: Banned player fanta] +2015-06-29 [12:12:31] [Server thread/INFO]: yas no more spam +2015-06-29 [12:12:36] [Server thread/INFO]: Hybalt left the game +2015-06-29 [12:12:36] [Server thread/INFO]: Hybalt[/68.196.163.172:64185] logged out due to client disconnect +2015-06-29 [12:12:40] [Server thread/INFO]: pls chiss +2015-06-29 [12:12:42] [Server thread/INFO]: Dill[/70.56.27.182:57196] logged out due to Outdated client! +2015-06-29 [12:12:50] [Server thread/INFO]: This isnt clans +2015-06-29 [12:12:52] [Server thread/INFO]: mom +2015-06-29 [12:12:53] [Server thread/INFO]: Yeah? If you do make Mineplex PE will we all be staff on there aswell? Or will it be separate? +2015-06-29 [12:12:57] [Server thread/INFO]: Its clans 2.0 +2015-06-29 [12:12:57] [Server thread/NOTICE]: Player data not found for "dawnbow", creating new profile +2015-06-29 [12:12:57] [Server thread/INFO]: Dawnbow[/108.206.22.195:56926] logged in with entity id 2616 at (world, 128, 62, 128) +2015-06-29 [12:12:58] [Server thread/INFO]: Ezypzy[/50.157.68.230:53316] logged in with entity id 2617 at (world, 145.4848, 62, 116.384) +2015-06-29 [12:13:03] [Server thread/INFO]: Charcoal_Inc fell from a high place +2015-06-29 [12:13:08] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:13:08] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:13:08] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:13:08] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:13:08] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:13:08] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:13:08] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:13:08] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:13:09] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:13:09] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:13:10] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:13:10] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:13:10] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:13:10] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:13:10] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:13:10] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:13:10] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:13:10] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:13:10] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:13:10] [Server thread/INFO]: Done (1.523s)! For help, type "help" or "?" +2015-06-29 [12:13:18] [Server thread/INFO]: chissling[/1.152.97.61:51275] logged in with entity id 1 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:13:19] [Server thread/NOTICE]: Player data not found for "mineplex", creating new profile +2015-06-29 [12:13:19] [Server thread/INFO]: Mineplex[/68.196.163.172:58392] logged in with entity id 9 at (world, 128, 62, 128) +2015-06-29 [12:13:19] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:13:19] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:57397] logged in with entity id 22 at (world, 151.6511, 66, 125.383) +2015-06-29 [12:13:19] [Server thread/INFO]: Labrdr_[/71.176.42.138:57902] logged in with entity id 23 at (world, 162.8825, 72.2522, 102.6432) +2015-06-29 [12:13:19] [Server thread/INFO]: Lpnt[/24.165.82.15:53310] logged in with entity id 24 at (world, 160.5474, 69, 51.2871) +2015-06-29 [12:13:20] [Server thread/INFO]: boo2300[/108.200.60.123:60724] logged in with entity id 26 at (world, 353.8508, 72, -240.2144) +2015-06-29 [12:13:20] [Server thread/INFO]: Mineplex joined the game +2015-06-29 [12:13:20] [Server thread/INFO]: greencreeper138[/50.149.17.203:50860] logged in with entity id 27 at (world, 128, 62, 128) +2015-06-29 [12:13:20] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [12:13:20] [Server thread/INFO]: Labrdr_ joined the game +2015-06-29 [12:13:20] [Server thread/INFO]: Lpnt joined the game +2015-06-29 [12:13:21] [Server thread/INFO]: boo2300 joined the game +2015-06-29 [12:13:21] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [12:13:21] [Server thread/INFO]: _Asuna_[/24.159.18.177:50031] logged in with entity id 28 at (world, 146.941, 66.2492, 111.3205) +2015-06-29 [12:13:21] [Server thread/INFO]: xFlare_[/108.173.172.41:57401] logged in with entity id 32 at (world, 128, 62, 128) +2015-06-29 [12:13:21] [Server thread/INFO]: SirBird[/85.65.138.176:53124] logged in with entity id 33 at (world, -19.3, 58.0002, 527.3) +2015-06-29 [12:13:22] [Server thread/INFO]: _Asuna_ joined the game +2015-06-29 [12:13:22] [Server thread/INFO]: Dawnbow[/108.206.22.195:56652] logged in with entity id 35 at (world, 128, 62, 128) +2015-06-29 [12:13:22] [Server thread/INFO]: xFlare_ joined the game +2015-06-29 [12:13:22] [Server thread/INFO]: SirBird joined the game +2015-06-29 [12:13:23] [Server thread/INFO]: pikachomp[/108.20.187.165:54240] logged in with entity id 37 at (world, 230.3938, 74.1661, 15.8797) +2015-06-29 [12:13:24] [Server thread/INFO]: Dawnbow joined the game +2015-06-29 [12:13:25] [Server thread/INFO]: pikachomp joined the game +2015-06-29 [12:13:28] [Server thread/NOTICE]: Player data not found for "swimmer_", creating new profile +2015-06-29 [12:13:28] [Server thread/INFO]: Swimmer_[/100.34.79.36:64302] logged in with entity id 40 at (world, 128, 62, 128) +2015-06-29 [12:13:30] [Server thread/INFO]: Swimmer_ joined the game +2015-06-29 [12:13:33] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:51259] logged in with entity id 42 at (world, 139.6699, 77, 181.5101) +2015-06-29 [12:13:33] [Server thread/INFO]: Hey dawn +2015-06-29 [12:13:34] [Server thread/INFO]: White_Hawk_7 joined the game +2015-06-29 [12:13:35] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:62377] logged in with entity id 43 at (world, 488.5446, 67, 97.2837) +2015-06-29 [12:13:36] [Server thread/INFO]: fantasticps3[/76.24.97.95:61892] logged in with entity id 44 at (world, 136.9146, 76, 205.1426) +2015-06-29 [12:13:36] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:13:37] [Server thread/INFO]: fantasticps3 joined the game +2015-06-29 [12:13:39] [Server thread/INFO]: hai +2015-06-29 [12:13:40] [Server thread/WARNING]: boo2300 moved wrongly! +2015-06-29 [12:13:42] [Server thread/INFO]: Lpnt left the game +2015-06-29 [12:13:42] [Server thread/INFO]: Lpnt[/24.165.82.15:53310] logged out due to client disconnect +2015-06-29 [12:13:43] [Server thread/INFO]: Hey +2015-06-29 [12:13:43] [Server thread/INFO]: Inbnd[/69.158.47.15:33245] logged in with entity id 49 at (world, 179.2171, 76, 103.0202) +2015-06-29 [12:13:46] [Server thread/INFO]: Ezypzy[/50.157.68.230:64635] logged in with entity id 51 at (world, 145.4848, 62, 116.384) +2015-06-29 [12:13:46] [Server thread/INFO]: Hey swimmer +2015-06-29 [12:13:51] [Server thread/WARNING]: _Asuna_ moved wrongly! +2015-06-29 [12:14:01] [Server thread/INFO]: d +2015-06-29 [12:14:01] [Server thread/INFO]: d +2015-06-29 [12:14:02] [Server thread/INFO]: Inbnd[/69.158.47.15:33245] logged out due to timeout +2015-06-29 [12:14:02] [Server thread/INFO]: dx +2015-06-29 [12:14:02] [Server thread/NOTICE]: Player data not found for "daflash11", creating new profile +2015-06-29 [12:14:02] [Server thread/INFO]: DaFlash11[/4.30.230.158:46490] logged in with entity id 60 at (world, 128, 62, 128) +2015-06-29 [12:14:03] [Server thread/INFO]: aaa +2015-06-29 [12:14:03] [Server thread/INFO]: s +2015-06-29 [12:14:03] [Server thread/INFO]: d +2015-06-29 [12:14:03] [Server thread/INFO]: c +2015-06-29 [12:14:04] [Server thread/INFO]: d +2015-06-29 [12:14:04] [Server thread/INFO]: s +2015-06-29 [12:14:04] [Server thread/INFO]: s +2015-06-29 [12:14:04] [Server thread/INFO]: f +2015-06-29 [12:14:04] [Server thread/INFO]: v +2015-06-29 [12:14:05] [Server thread/INFO]: c +2015-06-29 [12:14:05] [Server thread/INFO]: c +2015-06-29 [12:14:05] [Server thread/INFO]: s +2015-06-29 [12:14:05] [Server thread/INFO]: a +2015-06-29 [12:14:05] [Server thread/INFO]: a +2015-06-29 [12:14:06] [Server thread/INFO]: d +2015-06-29 [12:14:06] [Server thread/INFO]: f +2015-06-29 [12:14:06] [Server thread/INFO]: c +2015-06-29 [12:14:06] [Server thread/INFO]: v +2015-06-29 [12:14:06] [Server thread/INFO]: d +2015-06-29 [12:14:07] [Server thread/INFO]: s +2015-06-29 [12:14:07] [Server thread/INFO]: a +2015-06-29 [12:14:07] [Server thread/INFO]: s +2015-06-29 [12:14:07] [Server thread/INFO]: d +2015-06-29 [12:14:08] [Server thread/INFO]: d +2015-06-29 [12:14:08] [Server thread/INFO]: s +2015-06-29 [12:14:10] [Server thread/INFO]: STAHP +2015-06-29 [12:14:13] [Server thread/INFO]: He's back... +2015-06-29 [12:14:13] [Server thread/NOTICE]: Player data not found for "daniftw", creating new profile +2015-06-29 [12:14:13] [Server thread/INFO]: DaniFTW[/98.203.82.109:35104] logged in with entity id 64 at (world, 128, 62, 128) +2015-06-29 [12:14:16] [Server thread/INFO]: fanta please leave! +2015-06-29 [12:14:22] [Server thread/INFO]: rrrrr +2015-06-29 [12:14:24] [Server thread/INFO]: Why leave +2015-06-29 [12:14:27] [Server thread/INFO]: k +2015-06-29 [12:14:30] [Server thread/INFO]: I feel offended +2015-06-29 [12:14:32] [Server thread/INFO]: k +2015-06-29 [12:14:33] [Server thread/INFO]: k +2015-06-29 [12:14:33] [Server thread/INFO]: k +2015-06-29 [12:14:33] [Server thread/INFO]: k +2015-06-29 [12:14:33] [Server thread/INFO]: k +2015-06-29 [12:14:33] [Server thread/INFO]: k +2015-06-29 [12:14:34] [Server thread/INFO]: kk +2015-06-29 [12:14:34] [Server thread/INFO]: k +2015-06-29 [12:14:42] [Server thread/INFO]: My parents abuse me +2015-06-29 [12:14:49] [Server thread/INFO]: xFlare_ left the game +2015-06-29 [12:14:49] [Server thread/INFO]: xFlare_[/108.173.172.41:57401] logged out due to Kicked by admin. Reason: Banned by admin. +2015-06-29 [12:14:49] [Server thread/INFO]: [CONSOLE: Banned player xFlare_] +2015-06-29 [12:14:51] [Server thread/INFO]: Help +2015-06-29 [12:14:51] [Server thread/INFO]: If you feel offensed, please avoid spammimg! +2015-06-29 [12:14:53] [Server thread/INFO]: fantasticps3 left the game +2015-06-29 [12:14:53] [Server thread/INFO]: fantasticps3[/76.24.97.95:61892] logged out due to Kicked by admin. Reason: Banned by admin. +2015-06-29 [12:14:53] [Server thread/INFO]: [CONSOLE: Banned player fantasticps3] +2015-06-29 [12:14:56] [Server thread/INFO]: xFlare_[/108.173.172.41:62072] logged out due to You are banned +2015-06-29 [12:14:57] [Server thread/INFO]: lol swimmer +2015-06-29 [12:14:58] [Server thread/INFO]: [Server] banned +2015-06-29 [12:14:58] [Server thread/INFO]: biohazard_[/76.16.212.5:57296] logged in with entity id 141 at (world, 128, 62, 128) +2015-06-29 [12:15:03] [Server thread/INFO]: hi[/76.238.236.217:53601] logged out due to Outdated client! +2015-06-29 [12:15:04] [Server thread/INFO]: YAY +2015-06-29 [12:15:06] [Server thread/NOTICE]: Player data not found for "theblueone12", creating new profile +2015-06-29 [12:15:06] [Server thread/INFO]: TheBlueOne12[/75.115.33.196:60008] logged in with entity id 152 at (world, 128, 62, 128) +2015-06-29 [12:15:08] [Server thread/INFO]: kk +2015-06-29 [12:15:08] [Server thread/INFO]: thx +2015-06-29 [12:15:08] [Server thread/INFO]: <3 +2015-06-29 [12:15:12] [Server thread/INFO]: Yay Chiss we wuv uuu +2015-06-29 [12:15:21] [Server thread/INFO]: Finally. I can continue building in peace +2015-06-29 [12:15:26] [Server thread/INFO]: Ezypzy[/50.157.68.230:64635] logged out due to timeout +2015-06-29 [12:15:27] [Server thread/INFO]: So yeah... Chiss? +2015-06-29 [12:15:32] [Server thread/INFO]: why cant i mine +2015-06-29 [12:15:32] [Server thread/INFO]: Ezypzy[/50.157.68.230:57856] logged in with entity id 156 at (world, 145.4848, 62, 116.384) +2015-06-29 [12:15:33] [Server thread/INFO]: it appears sand does not fall +2015-06-29 [12:15:37] [Server thread/INFO]: Would we be staff on PE aswell? +2015-06-29 [12:15:45] [Server thread/INFO]: fantasticps3[/76.24.97.95:58275] logged out due to You are banned +2015-06-29 [12:15:50] [Server thread/INFO]: there are no ranks on pe +2015-06-29 [12:15:50] [Server thread/INFO]: Can you IP ban in PE? +2015-06-29 [12:15:51] [Server thread/INFO]: Snowballcps[/98.178.137.183:53216] logged in with entity id 163 at (world, 145.6646, 65, 113.8365) +2015-06-29 [12:15:54] [Server thread/INFO]: DaFlash11[/4.30.230.158:46490] logged out due to timeout +2015-06-29 [12:15:55] [Server thread/INFO]: We cannot mine for cobble, sadly +2015-06-29 [12:15:59] [Server thread/INFO]: DaFlash11[/4.30.230.158:47937] logged in with entity id 165 at (world, 128, 62, 128) +2015-06-29 [12:16:05] [Server thread/INFO]: hi[/76.238.236.217:62678] logged out due to Invalid name! +2015-06-29 [12:16:06] [Server thread/INFO]: cries +2015-06-29 [12:16:07] [Server thread/INFO]: yea +2015-06-29 [12:16:13] [Server thread/INFO]: I think it's IP ban by default pika +2015-06-29 [12:16:16] [Server thread/INFO]: TheBlueOne12[/75.115.33.196:60008] logged out due to timeout +2015-06-29 [12:16:20] [Server thread/INFO]: i been a admin on a creatuve pe server before +2015-06-29 [12:16:20] [Server thread/INFO]: the block lag tho +2015-06-29 [12:16:25] [Server thread/INFO]: ok, good +2015-06-29 [12:16:25] [Server thread/NOTICE]: Player data not found for "larrrrehislife", creating new profile +2015-06-29 [12:16:25] [Server thread/INFO]: LarrrrehIsLife[/76.238.236.217:51663] logged in with entity id 176 at (world, 128, 62, 128) +2015-06-29 [12:16:31] [Server thread/NOTICE]: Player data not found for "starrocket", creating new profile +2015-06-29 [12:16:31] [Server thread/INFO]: StarRocket[/70.56.27.182:60613] logged in with entity id 178 at (world, 128, 62, 128) +2015-06-29 [12:16:32] [Server thread/INFO]: Swimmer_ left the game +2015-06-29 [12:16:32] [Server thread/INFO]: Swimmer_[/100.34.79.36:64302] logged out due to timeout +2015-06-29 [12:16:36] [Server thread/INFO]: DaniFTW[/98.203.82.109:35104] logged out due to timeout +2015-06-29 [12:16:40] [Server thread/INFO]: DaniFTW[/98.203.82.109:34898] logged in with entity id 183 at (world, 128, 62, 128) +2015-06-29 [12:16:41] [Server thread/INFO]: bswardx[/220.245.130.194:62281] logged in with entity id 185 at (world, 174.15, 74.5358, 72.2392) +2015-06-29 [12:16:41] [Server thread/INFO]: bswardx[/220.245.130.194:62281] logged out due to client disconnect +2015-06-29 [12:16:42] [Server thread/INFO]: Ezypzy joined the game +2015-06-29 [12:16:42] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [12:16:42] [Server thread/INFO]: DaFlash11 joined the game +2015-06-29 [12:16:42] [Server thread/INFO]: LarrrrehIsLife joined the game +2015-06-29 [12:16:42] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:16:45] [Server thread/INFO]: biohazard_ joined the game +2015-06-29 [12:16:45] [Server thread/INFO]: DaniFTW joined the game +2015-06-29 [12:16:47] [Server thread/INFO]: guys i know 1 game we can play +2015-06-29 [12:16:54] [Server thread/INFO]: spleef but different +2015-06-29 [12:16:55] [Server thread/INFO]: ez life +2015-06-29 [12:16:56] [Server thread/INFO]: I feel like DT i PE could be fun +2015-06-29 [12:16:58] [Server thread/NOTICE]: Player data not found for "dablueone", creating new profile +2015-06-29 [12:16:58] [Server thread/INFO]: DaBlueOne[/75.115.33.196:38865] logged in with entity id 194 at (world, 128, 62, 128) +2015-06-29 [12:17:02] [Server thread/INFO]: in* +2015-06-29 [12:17:02] [Server thread/WARNING]: boo2300 moved wrongly! +2015-06-29 [12:17:03] [Server thread/INFO]: DaBlueOne joined the game +2015-06-29 [12:17:08] [Server thread/INFO]: DaFlash11 drowned +2015-06-29 [12:17:09] [Server thread/INFO]: lol +2015-06-29 [12:17:10] [Server thread/INFO]: biohazard_ drowned +2015-06-29 [12:17:11] [Server thread/INFO]: biohazard_ left the game +2015-06-29 [12:17:11] [Server thread/INFO]: biohazard_[/76.16.212.5:57296] logged out due to timeout +2015-06-29 [12:17:13] [Server thread/INFO]: Game: Guess Rosa's Crush +2015-06-29 [12:17:17] [Server thread/INFO]: Pyxl +2015-06-29 [12:17:19] [Server thread/INFO]: i win +2015-06-29 [12:17:19] [Server thread/INFO]: me +2015-06-29 [12:17:22] [Server thread/INFO]: LOL +2015-06-29 [12:17:24] [Server thread/INFO]: loo +2015-06-29 [12:17:25] [Server thread/INFO]: DaFlash11 left the game +2015-06-29 [12:17:25] [Server thread/INFO]: DaFlash11[/4.30.230.158:47937] logged out due to timeout +2015-06-29 [12:17:27] [Server thread/INFO]: lol +2015-06-29 [12:17:34] [Server thread/INFO]: das right hoe +2015-06-29 [12:17:37] [Server thread/INFO]: can we play +2015-06-29 [12:17:38] [Server thread/INFO]: DaFlash11[/4.30.230.158:49869] logged in with entity id 207 at (world, 128, 62, 128) +2015-06-29 [12:17:41] [Server thread/INFO]: Dawnbow drowned +2015-06-29 [12:17:44] [Server thread/INFO]: DaFlash11 joined the game +2015-06-29 [12:17:48] [Server thread/INFO]: turn on pvp +2015-06-29 [12:17:51] [Server thread/INFO]: why is this a thing +2015-06-29 [12:17:58] [Server thread/INFO]: not +2015-06-29 [12:17:59] [Server thread/WARNING]: greencreeper138 moved wrongly! +2015-06-29 [12:17:59] [Server thread/INFO]: hey, im jake961 +2015-06-29 [12:18:01] [Server thread/INFO]: Mineplex left the game +2015-06-29 [12:18:01] [Server thread/INFO]: Mineplex[/68.196.163.172:58392] logged out due to client disconnect +2015-06-29 [12:18:04] [Server thread/INFO]: Lab please +2015-06-29 [12:18:06] [Server thread/INFO]: oi +2015-06-29 [12:18:08] [Server thread/INFO]: Plz turn pvp on ;) +2015-06-29 [12:18:08] [Server thread/INFO]: ;-; +2015-06-29 [12:18:18] [Server thread/INFO]: Hybalt[/68.196.163.172:62972] logged in with entity id 224 at (world, 173.3, 72, 115.0039) +2015-06-29 [12:18:19] [Server thread/INFO]: We suffered enough xD +2015-06-29 [12:18:21] [Server thread/INFO]: i hate pe +2015-06-29 [12:18:23] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [12:18:30] [Server thread/INFO]: i'm so confused +2015-06-29 [12:18:33] [Server thread/INFO]: drink bleaxh hybalt +2015-06-29 [12:18:42] [Server thread/INFO]: o_O +2015-06-29 [12:18:43] [Server thread/INFO]: :O +2015-06-29 [12:18:46] [Server thread/INFO]: abusive behavior +2015-06-29 [12:18:46] [Server thread/INFO]: Ouch +2015-06-29 [12:18:48] [Server thread/NOTICE]: Player data not found for "anonie", creating new profile +2015-06-29 [12:18:48] [Server thread/INFO]: Anonie[/69.123.212.47:59008] logged in with entity id 229 at (world, 128, 62, 128) +2015-06-29 [12:18:48] [Server thread/INFO]: ... +2015-06-29 [12:18:49] [Server thread/INFO]: O.o +2015-06-29 [12:18:49] [Server thread/INFO]: lpnt u here? +2015-06-29 [12:18:50] [Server thread/INFO]: mute in game +2015-06-29 [12:18:51] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:18:59] [Server thread/INFO]: haha thanks larry i barely know you anyways +2015-06-29 [12:19:03] [Server thread/INFO]: Another player banned, good luck +2015-06-29 [12:19:10] [Server thread/INFO]: lol +2015-06-29 [12:19:14] [Server thread/INFO]: idgad about pe lol +2015-06-29 [12:19:16] [Server thread/INFO]: you can ban, sir +2015-06-29 [12:19:17] [Server thread/INFO]: drowning myself +2015-06-29 [12:19:18] [Server thread/INFO]: ? +2015-06-29 [12:19:43] [Server thread/NOTICE]: Player data not found for "garretteleven", creating new profile +2015-06-29 [12:19:43] [Server thread/INFO]: Garretteleven[/108.81.1.177:49407] logged in with entity id 241 at (world, 128, 62, 128) +2015-06-29 [12:19:44] [Server thread/NOTICE]: Player data not found for "loggedin", creating new profile +2015-06-29 [12:19:44] [Server thread/INFO]: LoggedIn[/12.238.61.12:64186] logged in with entity id 242 at (world, 128, 62, 128) +2015-06-29 [12:19:45] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:19:45] [Server thread/INFO]: ./op pikachomp +2015-06-29 [12:19:46] [Server thread/INFO]: LoggedIn joined the game +2015-06-29 [12:19:51] [Server thread/INFO]: * boo2300 was promoted to rank Meow +2015-06-29 [12:19:52] [Server thread/INFO]: larry i barely know you, you only hate me because of bogdan and what hes said about me +2015-06-29 [12:19:52] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:58258] logged in with entity id 243 at (world, 128, 62, 128) +2015-06-29 [12:19:55] [Server thread/INFO]: hi anonie +2015-06-29 [12:19:56] [Server thread/INFO]: CodeName[/24.45.209.193:58800] logged in with entity id 244 at (world, 128, 62, 128) +2015-06-29 [12:19:56] [Server thread/INFO]: PikachuDigsMC joined the game +2015-06-29 [12:19:59] [Server thread/INFO]: CodeName joined the game +2015-06-29 [12:20:01] [Server thread/INFO]: hi +2015-06-29 [12:20:03] [Server thread/INFO]: Hybalt fell from a high place +2015-06-29 [12:20:04] [Server thread/INFO]: im leaving, i hate mc pe +2015-06-29 [12:20:05] [Server thread/INFO]: Heeyyyyy +2015-06-29 [12:20:05] [Server thread/INFO]: s +2015-06-29 [12:20:09] [Server thread/INFO]: no i hate u cuz ur an attention whore +2015-06-29 [12:20:10] [Server thread/INFO]: hello +2015-06-29 [12:20:17] [Server thread/INFO]: eyy +2015-06-29 [12:20:17] [Server thread/INFO]: don't mention that whole attention whore business +2015-06-29 [12:20:21] [Server thread/INFO]: * BaconBeanbag is lost +2015-06-29 [12:20:23] [Server thread/INFO]: how does quitting/deactivating earn me more attention? +2015-06-29 [12:20:38] [Server thread/INFO]: greencreeper138 drowned +2015-06-29 [12:20:41] [Server thread/INFO]: * LarrrrehIsLife hi +2015-06-29 [12:20:43] [Server thread/INFO]: this is weird :/ +2015-06-29 [12:20:47] [Server thread/INFO]: PikachuDigsMC left the game +2015-06-29 [12:20:47] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:58258] logged out due to client disconnect +2015-06-29 [12:20:49] [Server thread/INFO]: ikr log +2015-06-29 [12:20:56] [Server thread/INFO]: uh idk maybe the fact that everyone was talking about you for a month +2015-06-29 [12:20:58] [Server thread/INFO]: DaFlash11 left the game +2015-06-29 [12:20:58] [Server thread/INFO]: DaFlash11[/4.30.230.158:49869] logged out due to timeout +2015-06-29 [12:21:04] [Server thread/INFO]: Carson[/24.67.112.135:54481] logged in with entity id 270 at (world, 172.4975, 76, 77.434) +2015-06-29 [12:21:06] [Server thread/INFO]: this is cool +2015-06-29 [12:21:08] [Server thread/INFO]: nice irl btw +2015-06-29 [12:21:12] [Server thread/INFO]: boo2300 left the game +2015-06-29 [12:21:12] [Server thread/INFO]: boo2300[/108.200.60.123:60724] logged out due to client disconnect +2015-06-29 [12:21:15] [Server thread/INFO]: Carson joined the game +2015-06-29 [12:21:15] [Server thread/INFO]: kwel +2015-06-29 [12:21:16] [Server thread/INFO]: i can imagine this being the mp lobby +2015-06-29 [12:21:26] [Server thread/INFO]: dis cool +2015-06-29 [12:21:37] [Server thread/INFO]: i'm pretty sure that this is actually clans +2015-06-29 [12:21:41] [Server thread/INFO]: brb switxhing to my ipad +2015-06-29 [12:21:42] [Server thread/INFO]: * pikachomp fell in a hole +2015-06-29 [12:21:44] [Server thread/INFO]: i remember when I didn't have PC MC and used to play PE +2015-06-29 [12:21:45] [Server thread/INFO]: hard to do this on a phone +2015-06-29 [12:21:45] [Server thread/INFO]: biohazard_[/76.16.212.5:53028] logged in with entity id 301 at (world, 128, 62, 128) +2015-06-29 [12:21:47] [Server thread/INFO]: GOOD TIMES +2015-06-29 [12:21:50] [Server thread/INFO]: if this is +2015-06-29 [12:21:50] [Server thread/INFO]: CLANz +2015-06-29 [12:21:50] [Server thread/INFO]: Carson fell from a high place +2015-06-29 [12:21:52] [Server thread/INFO]: Anonie left the game +2015-06-29 [12:21:52] [Server thread/INFO]: Anonie[/69.123.212.47:59008] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:21:52] [Server thread/INFO]: Anonie[/69.123.212.47:64392] logged in with entity id 311 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:21:52] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [12:21:52] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:62377] logged out due to timeout +2015-06-29 [12:21:54] [Server thread/INFO]: biohazard_ joined the game +2015-06-29 [12:21:54] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:21:57] [Server thread/INFO]: CodeName left the game +2015-06-29 [12:21:57] [Server thread/INFO]: CodeName[/24.45.209.193:58800] logged out due to client disconnect +2015-06-29 [12:22:01] [Server thread/INFO]: throwback ezy +2015-06-29 [12:22:01] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11699] logged in with entity id 322 at (world, 1568.3464, 70, -26.7915) +2015-06-29 [12:22:03] [Server thread/INFO]: gg +2015-06-29 [12:22:03] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:22:15] [Server thread/INFO]: i always used glitches to dupe items in pe lel +2015-06-29 [12:22:20] [Server thread/INFO]: Chiss is this a temp server? +2015-06-29 [12:22:21] [Server thread/INFO]: what is this? +2015-06-29 [12:22:22] [Server thread/INFO]: * BaconBeanbag needs help! +2015-06-29 [12:22:25] [Server thread/INFO]: LOL SAME +2015-06-29 [12:22:27] [Server thread/INFO]: same +2015-06-29 [12:22:31] [Server thread/INFO]: same xD +2015-06-29 [12:22:35] [Server thread/INFO]: is chissling chiss? +2015-06-29 [12:22:37] [Server thread/INFO]: i had dubs of diamond blocks +2015-06-29 [12:22:53] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:22:53] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:22:53] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:22:53] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:22:53] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:22:53] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:22:53] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:22:53] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:22:53] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:22:53] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:22:54] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:22:54] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:22:54] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:22:54] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:22:54] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:22:54] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:22:54] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:22:54] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:22:54] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:22:54] [Server thread/INFO]: Done (1.629s)! For help, type "help" or "?" +2015-06-29 [12:23:03] [Server thread/INFO]: LoggedIn[/12.238.61.12:65256] logged in with entity id 1 at (world, 128, 62, 128) +2015-06-29 [12:23:03] [Server thread/INFO]: biohazard_[/76.16.212.5:55325] logged in with entity id 2 at (world, 128, 62, 128) +2015-06-29 [12:23:03] [Server thread/INFO]: Dawnbow[/108.206.22.195:59900] logged in with entity id 3 at (world, 123.163, 75, 187.602) +2015-06-29 [12:23:04] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:56372] logged in with entity id 4 at (world, 152.5208, 65, 128.3) +2015-06-29 [12:23:04] [Server thread/INFO]: Garretteleven[/108.81.1.177:57336] logged in with entity id 16 at (world, 128, 62, 128) +2015-06-29 [12:23:04] [Server thread/INFO]: Labrdr_[/71.176.42.138:53113] logged in with entity id 17 at (world, 143.7702, 64, 114.7046) +2015-06-29 [12:23:05] [Server thread/INFO]: Anonie[/69.123.212.47:59139] logged in with entity id 27 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:23:05] [Server thread/INFO]: Hybalt[/68.196.163.172:63135] logged in with entity id 28 at (world, 173.3, 72, 115.0039) +2015-06-29 [12:23:05] [Server thread/INFO]: DaniFTW[/98.203.82.109:33540] logged in with entity id 29 at (world, 173.404, 76, 201.6377) +2015-06-29 [12:23:05] [Server thread/INFO]: Snowballcps[/98.178.137.183:63253] logged in with entity id 30 at (world, 145.6646, 65, 113.8365) +2015-06-29 [12:23:05] [Server thread/INFO]: StarRocket[/70.56.27.182:60692] logged in with entity id 43 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:23:06] [Server thread/INFO]: LoggedIn joined the game +2015-06-29 [12:23:06] [Server thread/INFO]: SirBird[/85.65.138.176:54846] logged in with entity id 49 at (world, -20.2863, 63, 529.1335) +2015-06-29 [12:23:06] [Server thread/INFO]: biohazard_ joined the game +2015-06-29 [12:23:07] [Server thread/INFO]: Dawnbow joined the game +2015-06-29 [12:23:07] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [12:23:07] [Server thread/INFO]: greencreeper138[/50.149.17.203:57400] logged in with entity id 54 at (world, -18.0068, 70.9216, 109.6761) +2015-06-29 [12:23:07] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11700] logged in with entity id 55 at (world, 1568.3464, 70, -26.7915) +2015-06-29 [12:23:07] [Server thread/INFO]: pikachomp[/108.20.187.165:59969] logged in with entity id 57 at (world, 168.0167, 73, 115.0567) +2015-06-29 [12:23:07] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:23:07] [Server thread/INFO]: Labrdr_ joined the game +2015-06-29 [12:23:08] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:23:08] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [12:23:08] [Server thread/INFO]: DaniFTW joined the game +2015-06-29 [12:23:08] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [12:23:08] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:23:09] [Server thread/INFO]: SirBird joined the game +2015-06-29 [12:23:10] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [12:23:10] [Server thread/INFO]: pikachomp joined the game +2015-06-29 [12:23:11] [Server thread/INFO]: LarrrrehIsLife[/76.238.236.217:55630] logged in with entity id 63 at (world, 119.047, 75, 192.6381) +2015-06-29 [12:23:12] [Server thread/INFO]: Ezypzy[/50.157.68.230:61334] logged in with entity id 64 at (world, 145.4848, 62, 116.384) +2015-06-29 [12:23:13] [Server thread/INFO]: Carson[/24.67.112.135:60888] logged in with entity id 65 at (world, 172.4975, 76, 77.434) +2015-06-29 [12:23:14] [Server thread/INFO]: LarrrrehIsLife joined the game +2015-06-29 [12:23:14] [Server thread/INFO]: chissling[/1.152.97.61:35370] logged in with entity id 66 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:23:15] [Server thread/INFO]: r00d +2015-06-29 [12:23:15] [Server thread/INFO]: Ezypzy joined the game +2015-06-29 [12:23:16] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:45551] logged in with entity id 67 at (world, 153.4707, 64.7664, 131.5935) +2015-06-29 [12:23:16] [Server thread/INFO]: Carson joined the game +2015-06-29 [12:23:18] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:23:18] [Server thread/INFO]: So +2015-06-29 [12:23:19] [Server thread/INFO]: White_Hawk_7 joined the game +2015-06-29 [12:23:24] [Server thread/INFO]: lol what +2015-06-29 [12:23:25] [Server thread/INFO]: ... +2015-06-29 [12:23:35] [Server thread/INFO]: k den +2015-06-29 [12:23:39] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:23:39] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:23:39] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:23:39] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:23:39] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:23:39] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:23:39] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:23:39] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:23:40] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:23:40] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:23:40] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:23:40] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:23:40] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:23:40] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:23:40] [Server thread/NOTICE]: Level "world" not found +2015-06-29 [12:23:40] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:23:40] [Server thread/NOTICE]: Spawn terrain for level "world" is being generated in the background +2015-06-29 [12:23:41] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:23:41] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:23:41] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:23:41] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:23:41] [Server thread/INFO]: Done (1.671s)! For help, type "help" or "?" +2015-06-29 [12:23:48] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:51264] logged in with entity id 1 at (world, 152.5208, 65, 128.3) +2015-06-29 [12:23:49] [Server thread/INFO]: LoggedIn[/12.238.61.12:65079] logged in with entity id 2 at (world, 128, 62, 128) +2015-06-29 [12:23:49] [Server thread/INFO]: biohazard_[/76.16.212.5:50377] logged in with entity id 3 at (world, 128, 62, 128) +2015-06-29 [12:23:49] [Server thread/INFO]: Hybalt[/68.196.163.172:61431] logged in with entity id 4 at (world, 173.3, 72, 115.0039) +2015-06-29 [12:23:49] [Server thread/INFO]: Ezypzy[/50.157.68.230:55990] logged in with entity id 5 at (world, 145.4848, 62, 116.384) +2015-06-29 [12:23:49] [Server thread/INFO]: greencreeper138[/50.149.17.203:49213] logged in with entity id 6 at (world, -18.0068, 70.9216, 109.6761) +2015-06-29 [12:23:50] [Server thread/INFO]: Anonie[/69.123.212.47:64679] logged in with entity id 7 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:23:56] [Server thread/INFO]: SirBird[/85.65.138.176:52783] logged in with entity id 8 at (world, -20.2863, 63, 529.1335) +2015-06-29 [12:23:56] [Server thread/INFO]: pikachomp[/108.20.187.165:52077] logged in with entity id 9 at (world, 168.0167, 73, 115.0567) +2015-06-29 [12:24:01] [Server thread/INFO]: LarrrrehIsLife[/76.238.236.217:61131] logged in with entity id 10 at (world, 119.047, 75, 192.6381) +2015-06-29 [12:24:07] [Server thread/INFO]: StarRocket[/70.56.27.182:33683] logged in with entity id 11 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:24:12] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:24:12] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:24:12] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:24:12] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:24:12] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:24:12] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:24:12] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:24:12] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:24:12] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:24:12] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:24:13] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:24:13] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:24:13] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:24:13] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:24:13] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:24:13] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:24:13] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:24:13] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:24:13] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:24:13] [Server thread/INFO]: Done (1.576s)! For help, type "help" or "?" +2015-06-29 [12:24:14] [Server thread/INFO]: White_Hawk_7[/71.15.82.173:52534] logged in with entity id 1 at (world, 153.4707, 64.7664, 131.5935) +2015-06-29 [12:24:14] [Server thread/INFO]: greencreeper138[/50.149.17.203:63733] logged in with entity id 2 at (world, -18.0068, 70.9216, 109.6761) +2015-06-29 [12:24:15] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11714] logged in with entity id 3 at (world, 1568.3464, 70, -26.7915) +2015-06-29 [12:24:15] [Server thread/NOTICE]: Player data not found for "dj2470", creating new profile +2015-06-29 [12:24:15] [Server thread/INFO]: DJ2470[/173.70.125.188:37605] logged in with entity id 4 at (world, 128, 70, 128) +2015-06-29 [12:24:20] [Server thread/INFO]: chissling[/1.152.97.61:54200] logged in with entity id 5 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:24:21] [Server thread/INFO]: biohazard_[/76.16.212.5:61754] logged in with entity id 6 at (world, 128, 62, 128) +2015-06-29 [12:24:21] [Server thread/INFO]: Hybalt[/68.196.163.172:51746] logged in with entity id 7 at (world, 173.3, 72, 115.0039) +2015-06-29 [12:24:22] [Server thread/INFO]: Ezypzy[/50.157.68.230:51623] logged in with entity id 8 at (world, 145.4848, 62, 116.384) +2015-06-29 [12:24:22] [Server thread/INFO]: StarRocket[/70.56.27.182:46100] logged in with entity id 9 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:24:23] [Server thread/INFO]: Carson[/24.67.112.135:58546] logged in with entity id 10 at (world, 172.4975, 76, 77.434) +2015-06-29 [12:24:23] [Server thread/INFO]: LoggedIn[/12.238.61.12:56389] logged in with entity id 11 at (world, 128, 62, 128) +2015-06-29 [12:24:32] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:65498] logged in with entity id 12 at (world, 152.5208, 65, 128.3) +2015-06-29 [12:24:33] [Server thread/INFO]: Snowballcps[/98.178.137.183:57449] logged in with entity id 13 at (world, 145.6646, 65, 113.8365) +2015-06-29 [12:24:57] [Server thread/INFO]: Anonie[/69.123.212.47:53514] logged in with entity id 14 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:25:02] [Server thread/INFO]: LarrrrehIsLife[/76.238.236.217:64194] logged in with entity id 15 at (world, 119.047, 75, 192.6381) +2015-06-29 [12:25:05] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [12:25:06] [Server thread/INFO]: White_Hawk_7 joined the game +2015-06-29 [12:25:19] [Server thread/INFO]: wot +2015-06-29 [12:25:19] [Server thread/INFO]: epicbluej[/173.20.33.223:54532] logged out due to Outdated client! +2015-06-29 [12:25:30] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:25:31] [Server thread/INFO]: DJ2470 joined the game +2015-06-29 [12:25:32] [Server thread/INFO]: biohazard_ joined the game +2015-06-29 [12:25:35] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:25:35] [Server thread/INFO]: Ezypzy joined the game +2015-06-29 [12:25:35] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:25:35] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [12:25:39] [Server thread/INFO]: BaconBeanbag died +2015-06-29 [12:25:45] [Server thread/INFO]: hi +2015-06-29 [12:25:46] [Server thread/INFO]: LoggedIn joined the game +2015-06-29 [12:25:46] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [12:25:47] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [12:25:48] [Server thread/INFO]: Carson joined the game +2015-06-29 [12:25:52] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:25:52] [Server thread/INFO]: LarrrrehIsLife joined the game +2015-06-29 [12:25:54] [Server thread/INFO]: yo +2015-06-29 [12:26:00] [Server thread/INFO]: Naidemoc[/72.224.184.140:49070] logged in with entity id 21 at (world, 114.5117, 66, 162.1862) +2015-06-29 [12:26:01] [Server thread/INFO]: larreh, check my wall +2015-06-29 [12:26:04] [Server thread/INFO]: yay i can actually see +2015-06-29 [12:26:05] [Server thread/INFO]: Carson left the game +2015-06-29 [12:26:05] [Server thread/INFO]: Carson[/24.67.112.135:58546] logged out due to client disconnect +2015-06-29 [12:26:06] [Server thread/INFO]: LoggedIn left the game +2015-06-29 [12:26:06] [Server thread/INFO]: LoggedIn[/12.238.61.12:56389] logged out due to timeout +2015-06-29 [12:26:09] [Server thread/INFO]: iggt +2015-06-29 [12:26:11] [Server thread/INFO]: SirBird[/85.65.138.176:57500] logged in with entity id 24 at (world, -20.2863, 63, 529.1335) +2015-06-29 [12:26:18] [Server thread/INFO]: Naidemoc joined the game +2015-06-29 [12:26:25] [Server thread/WARNING]: greencreeper138 moved wrongly! +2015-06-29 [12:26:27] [Server thread/INFO]: jRayx[/70.193.215.134:6384] logged in with entity id 34 at (world, 82.8547, 69, 192.8018) +2015-06-29 [12:26:30] [Server thread/INFO]: Hybalt left the game +2015-06-29 [12:26:30] [Server thread/INFO]: Hybalt[/68.196.163.172:51746] logged out due to client disconnect +2015-06-29 [12:26:31] [Server thread/INFO]: hey everyone +2015-06-29 [12:26:34] [Server thread/WARNING]: greencreeper138 moved wrongly! +2015-06-29 [12:26:35] [Server thread/INFO]: Is mineplex going mobile? +2015-06-29 [12:26:35] [Server thread/INFO]: jRayx joined the game +2015-06-29 [12:26:36] [Server thread/INFO]: Hai +2015-06-29 [12:26:36] [Server thread/INFO]: comedian +2015-06-29 [12:26:47] [Server thread/INFO]: Hai +2015-06-29 [12:26:52] [Server thread/INFO]: SirBird joined the game +2015-06-29 [12:26:57] [Server thread/INFO]: yo +2015-06-29 [12:27:00] [Server thread/INFO]: did chiss make new world? +2015-06-29 [12:27:08] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:27:08] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:27:08] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:27:08] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:27:08] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:27:08] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:27:08] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:27:08] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:27:08] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:27:08] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:27:09] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:27:09] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:27:09] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:27:09] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:27:09] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:27:09] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:27:09] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:27:09] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:27:09] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:27:09] [Server thread/INFO]: Done (1.72s)! For help, type "help" or "?" +2015-06-29 [12:27:16] [Server thread/INFO]: chissling[/1.152.97.61:63873] logged in with entity id 1 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:27:18] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:63625] logged in with entity id 2 at (world, 152.5208, 65, 128.3) +2015-06-29 [12:27:19] [Server thread/INFO]: DJ2470[/173.70.125.188:43975] logged in with entity id 3 at (world, 128, 70, 128) +2015-06-29 [12:27:19] [Server thread/INFO]: SirBird[/85.65.138.176:61527] logged in with entity id 4 at (world, -20.2863, 63, 529.1335) +2015-06-29 [12:27:22] [Server thread/INFO]: Anonie[/69.123.212.47:58035] logged in with entity id 5 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:27:22] [Server thread/INFO]: greencreeper138[/50.149.17.203:50482] logged in with entity id 6 at (world, -18.0068, 70.9216, 109.6761) +2015-06-29 [12:27:25] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11716] logged in with entity id 7 at (world, 1568.3464, 70, -26.7915) +2015-06-29 [12:27:26] [Server thread/INFO]: jRayx[/70.193.215.134:6391] logged in with entity id 8 at (world, 82.8547, 69, 192.8018) +2015-06-29 [12:27:35] [Server thread/INFO]: edgardme3[/74.194.110.14:54148] logged in with entity id 9 at (world, 180.1781, 76, 101.9068) +2015-06-29 [12:27:45] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11716] logged out due to timeout +2015-06-29 [12:27:54] [Server thread/INFO]: FlippinPiggeh[/135.0.229.178:53748] logged in with entity id 10 at (world, 289.3, 73, 95.8531) +2015-06-29 [12:27:57] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:27:58] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [12:27:59] [Server thread/INFO]: DJ2470 joined the game +2015-06-29 [12:28:03] [Server thread/INFO]: xPixel[/24.29.95.166:57120] logged in with entity id 11 at (world, 142.3778, 64, 125.8022) +2015-06-29 [12:28:07] [Server thread/INFO]: restart? +2015-06-29 [12:28:07] [Server thread/INFO]: LarrrrehIsLife[/76.238.236.217:64470] logged in with entity id 12 at (world, 119.047, 75, 192.6381) +2015-06-29 [12:28:14] [Server thread/INFO]: mojangpvp[/173.63.124.207:49212] logged in with entity id 13 at (world, 113.5796, 69, 76.6632) +2015-06-29 [12:28:16] [Server thread/INFO]: LightningAlex_[/95.151.204.139:62966] logged in with entity id 14 at (world, 141.6514, 64, 121.4963) +2015-06-29 [12:28:18] [Server thread/INFO]: KCGraphics[/68.190.243.10:53902] logged in with entity id 15 at (world, 185.5165, 78, 97.8805) +2015-06-29 [12:28:19] [Server thread/INFO]: Jlogaming[/104.235.41.90:54047] logged in with entity id 16 at (world, 152.4248, 73.0244, 175.7378) +2015-06-29 [12:28:19] [Server thread/INFO]: hey rosa +2015-06-29 [12:28:22] [Server thread/INFO]: Whiztech[/70.79.252.242:54788] logged in with entity id 17 at (world, 124.947, 74, 183.4908) +2015-06-29 [12:28:22] [Server thread/INFO]: SirBird joined the game +2015-06-29 [12:28:24] [Server thread/INFO]: hey +2015-06-29 [12:28:24] [Server thread/INFO]: edgardme3[/74.194.110.14:54148] logged out due to timeout +2015-06-29 [12:28:30] [Server thread/INFO]: Bach +2015-06-29 [12:28:31] [Server thread/INFO]: xPukey[/99.36.110.119:63421] logged in with entity id 18 at (world, 128, 62, 128) +2015-06-29 [12:28:32] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [12:28:34] [Server thread/INFO]: mojangpvp[/173.63.124.207:49212] logged out due to timeout +2015-06-29 [12:28:35] [Server thread/INFO]: DaBlueOne[/75.115.33.196:39670] logged in with entity id 19 at (world, 187.396, 77, 206.1484) +2015-06-29 [12:28:35] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:28:35] [Server thread/INFO]: hey chiss +2015-06-29 [12:28:36] [Server thread/INFO]: Tort[/99.182.2.129:62873] logged in with entity id 21 at (world, 172.901, 75, 101.1083) +2015-06-29 [12:28:36] [Server thread/INFO]: Back .-. +2015-06-29 [12:28:40] [Server thread/INFO]: jRayx joined the game +2015-06-29 [12:28:43] [Server thread/INFO]: Naidemoc[/72.224.184.140:43165] logged in with entity id 24 at (world, 114.5117, 66, 162.1862) +2015-06-29 [12:28:45] [Server thread/INFO]: Snowballcps[/98.178.137.183:51418] logged in with entity id 25 at (world, 145.6646, 65, 113.8365) +2015-06-29 [12:28:46] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:53514] logged in with entity id 26 at (world, 159.3, 65, 122.7) +2015-06-29 [12:28:47] [Server thread/INFO]: Carson[/24.67.112.135:54569] logged in with entity id 27 at (world, 168.8533, 67, 87.1586) +2015-06-29 [12:28:47] [Server thread/INFO]: xPixel joined the game +2015-06-29 [12:28:47] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:54488] logged in with entity id 28 at (world, 126.3, 77, 28.1567) +2015-06-29 [12:28:48] [Server thread/INFO]: LarrrrehIsLife joined the game +2015-06-29 [12:28:49] [Server thread/INFO]: LightningAlex_[/95.151.204.139:62966] logged out due to timeout +2015-06-29 [12:28:54] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:40797] logged in with entity id 29 at (world, 144.4241, 62, 118.4021) +2015-06-29 [12:28:56] [Server thread/INFO]: hey pixel +2015-06-29 [12:28:57] [Server thread/INFO]: BloodMiester[/97.101.46.243:55429] logged in with entity id 30 at (world, 84.5954, 77, 249.4404) +2015-06-29 [12:28:59] [Server thread/INFO]: bswardx[/220.245.130.194:54094] logged in with entity id 31 at (world, 174.15, 74.5358, 72.2392) +2015-06-29 [12:29:00] [Server thread/INFO]: Jlogaming joined the game +2015-06-29 [12:29:00] [Server thread/INFO]: Whiztech joined the game +2015-06-29 [12:29:05] [Server thread/INFO]: xPukey joined the game +2015-06-29 [12:29:07] [Server thread/INFO]: KCGraphics joined the game +2015-06-29 [12:29:07] [Server thread/INFO]: hey whizzy +2015-06-29 [12:29:10] [Server thread/INFO]: StarRocket[/70.56.27.182:51812] logged in with entity id 33 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:29:11] [Server thread/INFO]: StarRocket[/70.56.27.182:51812] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:29:11] [Server thread/INFO]: StarRocket[/70.56.27.182:53365] logged in with entity id 35 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:29:13] [Server thread/INFO]: FlippinPiggeh joined the game +2015-06-29 [12:29:14] [Server thread/INFO]: hey kc +2015-06-29 [12:29:14] [Server thread/INFO]: Ahoy +2015-06-29 [12:29:15] [Server thread/INFO]: DaBlueOne joined the game +2015-06-29 [12:29:15] [Server thread/INFO]: Tort joined the game +2015-06-29 [12:29:15] [Server thread/INFO]: xPukey left the game +2015-06-29 [12:29:15] [Server thread/INFO]: xPukey[/99.36.110.119:63421] logged out due to client disconnect +2015-06-29 [12:29:16] [Server thread/INFO]: i came agaib please +2015-06-29 [12:29:17] [Server thread/INFO]: yo +2015-06-29 [12:29:17] [Server thread/INFO]: StarRocket[/70.56.27.182:53365] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:29:17] [Server thread/INFO]: StarRocket[/70.56.27.182:59786] logged in with entity id 36 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:29:19] [Server thread/INFO]: Naidemoc joined the game +2015-06-29 [12:29:19] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [12:29:19] [Server thread/INFO]: crafterthatcraft joined the game +2015-06-29 [12:29:23] [Server thread/INFO]: Carson joined the game +2015-06-29 [12:29:23] [Server thread/INFO]: KCGraphics left the game +2015-06-29 [12:29:23] [Server thread/INFO]: KCGraphics[/68.190.243.10:53902] logged out due to timeout +2015-06-29 [12:29:23] [Server thread/INFO]: hey tort +2015-06-29 [12:29:26] [Server thread/INFO]: MystiQueyQ[/99.140.165.230:53138] logged in with entity id 39 at (world, 153.6253, 63, 114.3) +2015-06-29 [12:29:27] [Server thread/INFO]: hey everyone +2015-06-29 [12:29:27] [Server thread/INFO]: fat +2015-06-29 [12:29:30] [Server thread/INFO]: Charcoal_Inc joined the game +2015-06-29 [12:29:32] [Server thread/INFO]: Finndroidd[/72.50.86.39:37571] logged in with entity id 45 at (world, 186.2624, 77, 201.6809) +2015-06-29 [12:29:35] [Server thread/INFO]: Chiss calls, I come +2015-06-29 [12:29:36] [Server thread/WARNING]: Anonie moved wrongly! +2015-06-29 [12:29:36] [Server thread/INFO]: BloodMiester joined the game +2015-06-29 [12:29:36] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [12:29:37] [Server thread/INFO]: Not StarRocket[/70.56.27.182:54772] logged out due to Invalid name! +2015-06-29 [12:29:38] [Server thread/INFO]: bswardx joined the game +2015-06-29 [12:29:38] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:29:39] [Server thread/INFO]: MystiQueyQ joined the game +2015-06-29 [12:29:39] [Server thread/INFO]: Finndroidd joined the game +2015-06-29 [12:29:45] [Server thread/NOTICE]: Player data not found for "artix", creating new profile +2015-06-29 [12:29:45] [Server thread/INFO]: Artix[/68.32.132.196:40119] logged in with entity id 54 at (world, 128, 76, 128) +2015-06-29 [12:29:45] [Server thread/NOTICE]: Player data not found for "lemonjava", creating new profile +2015-06-29 [12:29:45] [Server thread/INFO]: LemonJava[/50.80.210.108:58685] logged in with entity id 55 at (world, 128, 76, 128) +2015-06-29 [12:29:45] [Server thread/INFO]: LarrrrehIsLife left the game +2015-06-29 [12:29:45] [Server thread/INFO]: LarrrrehIsLife[/76.238.236.217:64470] logged out due to timeout +2015-06-29 [12:29:48] [Server thread/INFO]: Nickel_[/24.192.64.208:58529] logged in with entity id 57 at (world, 119.4205, 69, 168.9068) +2015-06-29 [12:29:49] [Server thread/INFO]: diiiirtttt :D +2015-06-29 [12:29:49] [Server thread/WARNING]: Carson moved wrongly! +2015-06-29 [12:29:49] [Server thread/INFO]: [Server] PLEASE STAY AT SPWAN +2015-06-29 [12:29:53] [Server thread/INFO]: [Server] PLEASE STAY AT SPAWN +2015-06-29 [12:29:56] [Server thread/WARNING]: mikelikesmuffins moved wrongly! +2015-06-29 [12:29:56] [Server thread/INFO]: Artix joined the game +2015-06-29 [12:29:57] [Server thread/INFO]: LemonJava joined the game +2015-06-29 [12:29:57] [Server thread/INFO]: where is soawn +2015-06-29 [12:29:58] [Server thread/INFO]: I'm here for you chissy +2015-06-29 [12:29:59] [Server thread/INFO]: tp me pls +2015-06-29 [12:29:59] [Server thread/INFO]: Nickel_ joined the game +2015-06-29 [12:30:01] [Server thread/INFO]: whwre is spawn +2015-06-29 [12:30:03] [Server thread/INFO]: Playastar[/96.38.8.62:55669] logged in with entity id 63 at (world, 180.6225, 78, 94.2894) +2015-06-29 [12:30:03] [Server thread/INFO]: WHERE JS SPAWN +2015-06-29 [12:30:03] [Server thread/NOTICE]: Player data not found for "not_starrocket", creating new profile +2015-06-29 [12:30:03] [Server thread/INFO]: Not_StarRocket[/70.56.27.182:51083] logged in with entity id 64 at (world, 128, 76, 128) +2015-06-29 [12:30:04] [Server thread/INFO]: okay lord chiss +2015-06-29 [12:30:05] [Server thread/INFO]: but +2015-06-29 [12:30:06] [Server thread/INFO]: Playastar joined the game +2015-06-29 [12:30:06] [Server thread/INFO]: Not_StarRocket joined the game +2015-06-29 [12:30:07] [Server thread/INFO]: chissling died +2015-06-29 [12:30:10] [Server thread/INFO]: DaBlueOne left the game +2015-06-29 [12:30:10] [Server thread/INFO]: DaBlueOne[/75.115.33.196:39670] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [12:30:12] [Server thread/INFO]: PEOPLE WHEEE IS SPAWNNNN +2015-06-29 [12:30:12] [Server thread/INFO]: that artix nub joined :P +2015-06-29 [12:30:14] [Server thread/INFO]: LightningAlex_[/95.151.204.139:52662] logged in with entity id 69 at (world, 141.6514, 64, 121.4963) +2015-06-29 [12:30:15] [Server thread/INFO]: [CONSOLE: Set chissling's game mode to Creative Mode] +2015-06-29 [12:30:17] [Server thread/INFO]: Whiztech died +2015-06-29 [12:30:18] [Server thread/INFO]: LightningAlex_ joined the game +2015-06-29 [12:30:19] [Server thread/INFO]: FlippinPiggeh fell from a high place +2015-06-29 [12:30:19] [Server thread/INFO]: Listen to Chiss. Moving makes more chunks +2015-06-29 [12:30:22] [Server thread/INFO]: DaBlueOne[/75.115.33.196:60641] logged in with entity id 71 at (world, 209.3, 75, 226.6539) +2015-06-29 [12:30:23] [Server thread/INFO]: artix abuse +2015-06-29 [12:30:25] [Server thread/INFO]: DaBlueOne joined the game +2015-06-29 [12:30:30] [Server thread/INFO]: 15Ibans[/72.91.34.54:59563] logged in with entity id 74 at (world, 158.5066, 65, 119.4727) +2015-06-29 [12:30:31] [Server thread/INFO]: DaBlueOne died +2015-06-29 [12:30:31] [Server thread/INFO]: yo! +2015-06-29 [12:30:33] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [12:30:40] [Server thread/INFO]: there is no filter +2015-06-29 [12:30:45] [Server thread/INFO]: IS THIS SPAWN +2015-06-29 [12:30:49] [Server thread/WARNING]: StarRocket moved wrongly! +2015-06-29 [12:30:50] [Server thread/INFO]: gr8p[/50.175.156.220:53060] logged in with entity id 80 at (world, 148.1668, 80, 194.3895) +2015-06-29 [12:30:53] [Server thread/INFO]: gr8p joined the game +2015-06-29 [12:30:55] [Server thread/WARNING]: DJ2470 moved wrongly! +2015-06-29 [12:30:55] [Server thread/WARNING]: DJ2470 moved wrongly! +2015-06-29 [12:30:56] [Server thread/INFO]: DO NOT WALK AROUND TO MUCH. IT LOADS CHUNKS MAKING LAG +2015-06-29 [12:31:00] [Server thread/INFO]: this spawn? +2015-06-29 [12:31:00] [Server thread/INFO]: Nickel_ left the game +2015-06-29 [12:31:00] [Server thread/INFO]: Nickel_[/24.192.64.208:58529] logged out due to timeout +2015-06-29 [12:31:03] [Server thread/INFO]: Carson left the game +2015-06-29 [12:31:03] [Server thread/INFO]: Carson[/24.67.112.135:54569] logged out due to client disconnect +2015-06-29 [12:31:03] [Server thread/WARNING]: LemonJava moved wrongly! +2015-06-29 [12:31:03] [Server thread/INFO]: hi +2015-06-29 [12:31:03] [Server thread/INFO]: Finndroidd hit the ground too hard +2015-06-29 [12:31:04] [Server thread/NOTICE]: Player data not found for "daddydean", creating new profile +2015-06-29 [12:31:04] [Server thread/INFO]: DaddyDean[/188.207.92.49:33155] logged in with entity id 84 at (world, 128, 76, 128) +2015-06-29 [12:31:05] [Server thread/INFO]: SEE ^^^^^^^^ +2015-06-29 [12:31:07] [Server thread/INFO]: is towering ok? :3 +2015-06-29 [12:31:07] [Server thread/INFO]: DaddyDean joined the game +2015-06-29 [12:31:09] [Server thread/NOTICE]: Player data not found for "casuallykaleb", creating new profile +2015-06-29 [12:31:09] [Server thread/INFO]: CasuallyKaleb[/98.155.61.202:40814] logged in with entity id 86 at (world, 128, 76, 128) +2015-06-29 [12:31:13] [Server thread/INFO]: CasuallyKaleb joined the game +2015-06-29 [12:31:13] [Server thread/INFO]: gg Finn :P +2015-06-29 [12:31:18] [Server thread/INFO]: why cant i kill people? :p +2015-06-29 [12:31:18] [Server thread/INFO]: Ton[/99.117.132.36:51640] logged in with entity id 88 at (world, 145.4713, 65, 127.2844) +2015-06-29 [12:31:20] [Server thread/INFO]: ./kill +2015-06-29 [12:31:21] [Server thread/INFO]: Ton joined the game +2015-06-29 [12:31:21] [Server thread/WARNING]: BloodMiester moved wrongly! +2015-06-29 [12:31:24] [Server thread/INFO]: kaleb +2015-06-29 [12:31:25] [Server thread/INFO]: chiss said to sray in spawn +2015-06-29 [12:31:25] [Server thread/NOTICE]: Player data not found for "buffymlg", creating new profile +2015-06-29 [12:31:25] [Server thread/INFO]: Buffymlg[/104.169.232.168:49868] logged in with entity id 90 at (world, 128, 76, 128) +2015-06-29 [12:31:26] [Server thread/INFO]: greencreeper138 died +2015-06-29 [12:31:27] [Server thread/INFO]: was trying to respW +2015-06-29 [12:31:28] [Server thread/INFO]: Buffymlg joined the game +2015-06-29 [12:31:28] [Server thread/INFO]: git gud boi +2015-06-29 [12:31:29] [Server thread/INFO]: stayin spawn +2015-06-29 [12:31:30] [Server thread/INFO]: gr8p left the game +2015-06-29 [12:31:30] [Server thread/INFO]: gr8p[/50.175.156.220:53060] logged out due to client disconnect +2015-06-29 [12:31:31] [Server thread/NOTICE]: Player data not found for "penguinhi5", creating new profile +2015-06-29 [12:31:31] [Server thread/INFO]: PenguinHi5[/67.2.213.189:56107] logged in with entity id 92 at (world, 128, 76, 128) +2015-06-29 [12:31:31] [Server thread/INFO]: wot +2015-06-29 [12:31:31] [Server thread/INFO]: alex +2015-06-29 [12:31:32] [Server thread/INFO]: Finndroidd died +2015-06-29 [12:31:32] [Server thread/INFO]: stayin spawn +2015-06-29 [12:31:33] [Server thread/INFO]: Towering creates chunks too +2015-06-29 [12:31:33] [Server thread/INFO]: hai +2015-06-29 [12:31:34] [Server thread/INFO]: Tort died +2015-06-29 [12:31:34] [Server thread/INFO]: PenguinHi5 joined the game +2015-06-29 [12:31:36] [Server thread/INFO]: stay in spawn +2015-06-29 [12:31:37] [Server thread/INFO]: DJ2470 died +2015-06-29 [12:31:39] [Server thread/INFO]: stay in spawn +2015-06-29 [12:31:42] [Server thread/INFO]: WAT +2015-06-29 [12:31:42] [Server thread/INFO]: stay in spawn +2015-06-29 [12:31:43] [Server thread/INFO]: this actuallu works +2015-06-29 [12:31:44] [Server thread/INFO]: hi buffy +2015-06-29 [12:31:44] [Server thread/INFO]: LAV +2015-06-29 [12:31:44] [Server thread/INFO]: k +2015-06-29 [12:31:49] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:31:54] [Server thread/INFO]: lava o.o +2015-06-29 [12:31:56] [Server thread/INFO]: RosaEpicBeauty tried to swim in lava +2015-06-29 [12:31:57] [Server thread/INFO]: Garretteleven[/108.81.1.177:51610] logged in with entity id 107 at (world, 128, 62, 128) +2015-06-29 [12:31:58] [Server thread/WARNING]: DaBlueOne moved wrongly! +2015-06-29 [12:31:59] [Server thread/INFO]: greencreeper138 tried to swim in lava +2015-06-29 [12:32:00] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:32:01] [Server thread/INFO]: DaBlueOne tried to swim in lava +2015-06-29 [12:32:01] [Server thread/INFO]: DaddyDean tried to swim in lava +2015-06-29 [12:32:03] [Server thread/INFO]: of course u did tort +2015-06-29 [12:32:04] [Server thread/INFO]: kaleb +2015-06-29 [12:32:05] [Server thread/INFO]: Tort went up in flames +2015-06-29 [12:32:05] [Server thread/INFO]: o +2015-06-29 [12:32:07] [Server thread/INFO]: greencreeper138 tried to swim in lava +2015-06-29 [12:32:08] [Server thread/INFO]: RIP ^ +2015-06-29 [12:32:10] [Server thread/INFO]: hello +2015-06-29 [12:32:12] [Server thread/INFO]: hi peguini +2015-06-29 [12:32:15] [Server thread/INFO]: still dont know why i have this on my phone and tablet +2015-06-29 [12:32:15] [Server thread/INFO]: still don't know why I have this on my phone and tablet +2015-06-29 [12:32:15] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:32:19] [Server thread/INFO]: Jlogaming left the game +2015-06-29 [12:32:19] [Server thread/INFO]: Jlogaming[/104.235.41.90:54047] logged out due to timeout +2015-06-29 [12:32:23] [Server thread/INFO]: Hello +2015-06-29 [12:32:24] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:32:27] [Server thread/INFO]: anonie this is beautiful +2015-06-29 [12:32:31] [Server thread/INFO]: Steve[/191.184.98.171:65403] logged in with entity id 119 at (world, 149.3054, 62, 116.6422) +2015-06-29 [12:32:31] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:32:34] [Server thread/INFO]: Steve joined the game +2015-06-29 [12:32:36] [Server thread/INFO]: yay +2015-06-29 [12:32:37] [Server thread/INFO]: kaleb i am your tarp king +2015-06-29 [12:32:39] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:32:43] [Server thread/INFO]: lol steve joined +2015-06-29 [12:32:44] [Server thread/INFO]: HAYY +2015-06-29 [12:32:46] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:32:47] [Server thread/INFO]: * RosaEpicBeauty attempts to swim in lava +2015-06-29 [12:32:49] [Server thread/INFO]: Anonie died +2015-06-29 [12:32:51] [Server thread/INFO]: RosaEpicBeauty tried to swim in lava +2015-06-29 [12:32:51] [Server thread/INFO]: DJ2470 tried to swim in lava +2015-06-29 [12:32:52] [Server thread/INFO]: nice house +2015-06-29 [12:32:54] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:32:55] [Server thread/INFO]: LightningAlex_ left the game +2015-06-29 [12:32:55] [Server thread/INFO]: LightningAlex_[/95.151.204.139:52662] logged out due to timeout +2015-06-29 [12:32:55] [Server thread/INFO]: I made it ;-; +2015-06-29 [12:32:55] [Server thread/WARNING]: greencreeper138 moved wrongly! +2015-06-29 [12:32:57] [Server thread/INFO]: Where's spawn? +2015-06-29 [12:33:02] [Server thread/INFO]: woah +2015-06-29 [12:33:02] [Server thread/INFO]: Tort tried to swim in lava +2015-06-29 [12:33:04] [Server thread/INFO]: * Anonie jdkdkmsa,d,kc +2015-06-29 [12:33:08] [Server thread/WARNING]: Anonie moved wrongly! +2015-06-29 [12:33:08] [Server thread/INFO]: 3vandg[/73.22.163.221:63037] logged in with entity id 134 at (world, 168.4477, 71, 121.8161) +2015-06-29 [12:33:12] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:40683] logged out due to Outdated client! +2015-06-29 [12:33:18] [Server thread/INFO]: I don't think Tort understands lava = death :P +2015-06-29 [12:33:18] [Server thread/INFO]: hey buffy +2015-06-29 [12:33:18] [Server thread/INFO]: how do you change your skin +2015-06-29 [12:33:19] [Server thread/INFO]: do /kill to go to spawn +2015-06-29 [12:33:19] [Server thread/INFO]: 3vandg joined the game +2015-06-29 [12:33:21] [Server thread/INFO]: stop moving around +2015-06-29 [12:33:21] [Server thread/INFO]: PLS NO CHISS +2015-06-29 [12:33:25] [Server thread/INFO]: omf +2015-06-29 [12:33:26] [Server thread/INFO]: 3vandg tried to swim in lava +2015-06-29 [12:33:28] [Server thread/INFO]: omg +2015-06-29 [12:33:30] [Server thread/INFO]: nooo +2015-06-29 [12:33:32] [Server thread/INFO]: MystiQueyQ tried to swim in lava +2015-06-29 [12:33:38] [Server thread/INFO]: Finndroidd left the game +2015-06-29 [12:33:38] [Server thread/INFO]: Finndroidd[/72.50.86.39:37571] logged out due to timeout +2015-06-29 [12:33:38] [Server thread/INFO]: SophiaRose[/104.246.120.48:52241] logged in with entity id 157 at (world, 560.3516, 75, -4.0438) +2015-06-29 [12:33:41] [Server thread/INFO]: wut how do I change my name :p +2015-06-29 [12:33:49] [Server thread/INFO]: ): +2015-06-29 [12:33:52] [Server thread/INFO]: DJ2470 left the game +2015-06-29 [12:33:52] [Server thread/INFO]: DJ2470[/173.70.125.188:43975] logged out due to timeout +2015-06-29 [12:33:53] [Server thread/INFO]: buffy? +2015-06-29 [12:33:54] [Server thread/INFO]: leave and settings +2015-06-29 [12:33:55] [Server thread/INFO]: Settings +2015-06-29 [12:33:56] [Server thread/INFO]: settings +2015-06-29 [12:33:58] [Server thread/INFO]: Garretteleven left the game +2015-06-29 [12:33:58] [Server thread/INFO]: Garretteleven[/108.81.1.177:51610] logged out due to timeout +2015-06-29 [12:34:01] [Server thread/INFO]: Ton tried to swim in lava +2015-06-29 [12:34:04] [Server thread/INFO]: So, how is everyone? +2015-06-29 [12:34:05] [Server thread/NOTICE]: Player data not found for "pr0ph3t123", creating new profile +2015-06-29 [12:34:05] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:39738] logged in with entity id 172 at (world, 128, 76, 128) +2015-06-29 [12:34:07] [Server thread/INFO]: FlippinPiggeh tried to swim in lava +2015-06-29 [12:34:09] [Server thread/INFO]: xPixel left the game +2015-06-29 [12:34:09] [Server thread/INFO]: xPixel[/24.29.95.166:57120] logged out due to timeout +2015-06-29 [12:34:12] [Server thread/INFO]: Pr0pH3T123 joined the game +2015-06-29 [12:34:17] [Server thread/INFO]: SophiaRose joined the game +2015-06-29 [12:34:17] [Server thread/INFO]: swag bunker :D +2015-06-29 [12:34:17] [Server thread/INFO]: I'm fine thanks +2015-06-29 [12:34:18] [Server thread/INFO]: good, and you? +2015-06-29 [12:34:19] [Server thread/INFO]: Anonie tried to swim in lava +2015-06-29 [12:34:19] [Server thread/INFO]: Looks like a lot of people need a nurse +2015-06-29 [12:34:24] [Server thread/INFO]: buffy +2015-06-29 [12:34:27] [Server thread/INFO]: chissling is chiss +2015-06-29 [12:34:32] [Server thread/INFO]: jRayx left the game +2015-06-29 [12:34:32] [Server thread/INFO]: jRayx[/70.193.215.134:6391] logged out due to timeout +2015-06-29 [12:34:35] [Server thread/INFO]: Anonie tried to swim in lava +2015-06-29 [12:34:38] [Server thread/WARNING]: Buffymlg moved wrongly! +2015-06-29 [12:34:41] [Server thread/INFO]: wat +2015-06-29 [12:34:42] [Server thread/INFO]: Steve left the game +2015-06-29 [12:34:42] [Server thread/INFO]: Steve[/191.184.98.171:65403] logged out due to client disconnect +2015-06-29 [12:34:43] [Server thread/INFO]: Garretteleven[/108.81.1.177:57758] logged in with entity id 196 at (world, 141.3549, 79, 110.4999) +2015-06-29 [12:34:46] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:34:50] [Server thread/INFO]: jRayx[/70.193.215.134:6394] logged in with entity id 203 at (world, 90.486, 95, 216.3598) +2015-06-29 [12:34:53] [Server thread/INFO]: this is a nice bunker charcoal :D +2015-06-29 [12:34:55] [Server thread/INFO]: o where is everyone +2015-06-29 [12:34:55] [Server thread/INFO]: crafterthatcraft left the game +2015-06-29 [12:34:55] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:53514] logged out due to client disconnect +2015-06-29 [12:34:56] [Server thread/INFO]: jRayx joined the game +2015-06-29 [12:34:57] [Server thread/NOTICE]: Player data not found for "lukeskywalker", creating new profile +2015-06-29 [12:34:57] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:53074] logged in with entity id 204 at (world, 128, 76, 128) +2015-06-29 [12:35:00] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [12:35:02] [Server thread/INFO]: guys SOS +2015-06-29 [12:35:02] [Server thread/INFO]: thanks <3 +2015-06-29 [12:35:03] [Server thread/INFO]: My inventory is switching randomly what's going on +2015-06-29 [12:35:06] [Server thread/INFO]: congrats on mod mysti +2015-06-29 [12:35:12] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:62535] logged in with entity id 205 at (world, 132.449, 77, 123.1425) +2015-06-29 [12:35:14] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:60232] logged in with entity id 206 at (world, 114.9764, 77, 204.86) +2015-06-29 [12:35:16] [Server thread/INFO]: SophiaRose left the game +2015-06-29 [12:35:16] [Server thread/INFO]: SophiaRose[/104.246.120.48:52241] logged out due to client disconnect +2015-06-29 [12:35:16] [Server thread/INFO]: PenguinHi5 tried to swim in lava +2015-06-29 [12:35:19] [Server thread/INFO]: SophiaRose[/104.246.120.48:53750] logged in with entity id 207 at (world, 546.2043, 71, 19.3042) +2015-06-29 [12:35:22] [Server thread/WARNING]: PenguinHi5 moved wrongly! +2015-06-29 [12:35:22] [Server thread/INFO]: crafterthatcraft joined the game +2015-06-29 [12:35:23] [Server thread/INFO]: PikachuDigsMC joined the game +2015-06-29 [12:35:23] [Server thread/INFO]: Well deserved <3 +2015-06-29 [12:35:27] [Server thread/INFO]: Whiztech left the game +2015-06-29 [12:35:27] [Server thread/INFO]: Whiztech[/70.79.252.242:54788] logged out due to timeout +2015-06-29 [12:35:27] [Server thread/WARNING]: CasuallyKaleb moved wrongly! +2015-06-29 [12:35:28] [Server thread/WARNING]: CasuallyKaleb moved wrongly! +2015-06-29 [12:35:30] [Server thread/INFO]: LemonJava tried to swim in lava +2015-06-29 [12:35:33] [Server thread/INFO]: SophiaRose joined the game +2015-06-29 [12:35:37] [Server thread/INFO]: RosaEpicBeauty tried to swim in lava +2015-06-29 [12:35:39] [Server thread/INFO]: FlippinPiggeh left the game +2015-06-29 [12:35:39] [Server thread/INFO]: FlippinPiggeh[/135.0.229.178:53748] logged out due to timeout +2015-06-29 [12:35:43] [Server thread/INFO]: does half of the server not know you can have a skin? :p +2015-06-29 [12:35:47] [Server thread/INFO]: all this lava is gonna melt snowball +2015-06-29 [12:35:47] [Server thread/WARNING]: RosaEpicBeauty moved wrongly! +2015-06-29 [12:35:48] [Server thread/INFO]: Pr0pH3T123 tried to swim in lava +2015-06-29 [12:35:49] [Server thread/INFO]: Lol +2015-06-29 [12:36:09] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:36:09] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:36:09] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:36:09] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:36:09] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:36:09] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:36:09] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:36:09] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:36:09] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:36:09] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:36:10] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:36:10] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:36:10] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:36:10] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:36:10] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:36:10] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:36:10] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:36:10] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:36:10] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:36:10] [Server thread/INFO]: Done (1.549s)! For help, type "help" or "?" +2015-06-29 [12:36:10] [Server thread/INFO]: bswardx[/220.245.130.194:64072] logged in with entity id 1 at (world, 174.15, 74.5358, 72.2392) +2015-06-29 [12:36:11] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:58150] logged in with entity id 2 at (world, 132.449, 77, 123.1425) +2015-06-29 [12:36:11] [Server thread/INFO]: SophiaRose[/104.246.120.48:58495] logged in with entity id 3 at (world, 546.2043, 71, 19.3042) +2015-06-29 [12:36:11] [Server thread/INFO]: 3vandg[/73.22.163.221:61445] logged in with entity id 4 at (world, 168.4477, 71, 121.8161) +2015-06-29 [12:36:11] [Server thread/INFO]: Immovable[/184.163.201.200:54152] logged in with entity id 5 at (world, 147.2126, 65, 118.4079) +2015-06-29 [12:36:11] [Server thread/INFO]: LemonJava[/50.80.210.108:50633] logged in with entity id 6 at (world, 128, 76, 128) +2015-06-29 [12:36:11] [Server thread/INFO]: 15Ibans[/72.91.34.54:45140] logged in with entity id 7 at (world, 158.5066, 65, 119.4727) +2015-06-29 [12:36:11] [Server thread/INFO]: Anonie[/69.123.212.47:49997] logged in with entity id 8 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:36:11] [Server thread/INFO]: DaddyDean[/188.207.92.49:33165] logged in with entity id 9 at (world, 128, 76, 128) +2015-06-29 [12:36:11] [Server thread/INFO]: Playastar[/96.38.8.62:55980] logged in with entity id 10 at (world, 180.6225, 78, 94.2894) +2015-06-29 [12:36:12] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:54895] logged in with entity id 11 at (world, 126.3, 77, 28.1567) +2015-06-29 [12:36:12] [Server thread/INFO]: StarRocket[/70.56.27.182:55213] logged in with entity id 12 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:36:12] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:56864] logged in with entity id 13 at (world, 144.4241, 62, 118.4021) +2015-06-29 [12:36:13] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:53993] logged in with entity id 14 at (world, 128, 76, 128) +2015-06-29 [12:36:13] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:62552] logged in with entity id 15 at (world, 152.5208, 65, 128.3) +2015-06-29 [12:36:14] [Server thread/INFO]: Not_StarRocket[/70.56.27.182:54107] logged in with entity id 16 at (world, 128, 76, 128) +2015-06-29 [12:36:14] [Server thread/INFO]: chissling[/1.152.97.61:63435] logged in with entity id 17 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:36:15] [Server thread/INFO]: PikachuDigsMC[/166.230.68.81:65525] logged in with entity id 18 at (world, 114.9764, 77, 204.86) +2015-06-29 [12:36:15] [Server thread/INFO]: greencreeper138[/50.149.17.203:64936] logged in with entity id 19 at (world, -18.0068, 70.9216, 109.6761) +2015-06-29 [12:36:17] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:11982] logged in with entity id 20 at (world, 1568.3464, 70, -26.7915) +2015-06-29 [12:36:21] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:43630] logged in with entity id 21 at (world, 128, 76, 128) +2015-06-29 [12:36:39] [Server thread/INFO]: bswardx joined the game +2015-06-29 [12:36:39] [Server thread/INFO]: crafterthatcraft joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: Immovable[/184.163.201.200:54152] logged out due to timeout +2015-06-29 [12:36:46] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:62552] logged out due to timeout +2015-06-29 [12:36:46] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: 3vandg joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: LemonJava joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: DaddyDean joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: Playastar joined the game +2015-06-29 [12:36:46] [Server thread/INFO]: bswardx fell out of the world +2015-06-29 [12:36:48] [Server thread/INFO]: 3vandg left the game +2015-06-29 [12:36:48] [Server thread/INFO]: 3vandg[/73.22.163.221:61445] logged out due to timeout +2015-06-29 [12:36:48] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:36:48] [Server thread/INFO]: Charcoal_Inc joined the game +2015-06-29 [12:36:48] [Server thread/INFO]: 15Ibans fell out of the world +2015-06-29 [12:36:49] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [12:36:50] [Server thread/INFO]: Immovable[/184.163.201.200:55754] logged in with entity id 24 at (world, 147.2126, 65, 118.4079) +2015-06-29 [12:36:52] [Server thread/INFO]: Not_StarRocket joined the game +2015-06-29 [12:36:52] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:36:52] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [12:36:52] [Server thread/INFO]: PikachuDigsMC joined the game +2015-06-29 [12:36:52] [Server thread/INFO]: Charcoal_Inc fell out of the world +2015-06-29 [12:36:55] [Server thread/INFO]: Pr0pH3T123 joined the game +2015-06-29 [12:36:55] [Server thread/INFO]: crafterthatcraft fell out of the world +2015-06-29 [12:36:58] [Server thread/INFO]: SophiaRose joined the game +2015-06-29 [12:36:58] [Server thread/INFO]: LemonJava fell out of the world +2015-06-29 [12:36:58] [Server thread/INFO]: Anonie fell out of the world +2015-06-29 [12:36:58] [Server thread/INFO]: DaddyDean fell out of the world +2015-06-29 [12:36:58] [Server thread/INFO]: Playastar fell out of the world +2015-06-29 [12:36:58] [Server thread/INFO]: mikelikesmuffins fell out of the world +2015-06-29 [12:37:01] [Server thread/INFO]: wat +2015-06-29 [12:37:02] [Server thread/INFO]: StarRocket fell out of the world +2015-06-29 [12:37:02] [Server thread/INFO]: LukeSkywalker fell out of the world +2015-06-29 [12:37:05] [Server thread/INFO]: Immovable joined the game +2015-06-29 [12:37:05] [Server thread/INFO]: Not_StarRocket fell out of the world +2015-06-29 [12:37:05] [Server thread/INFO]: chissling fell out of the world +2015-06-29 [12:37:05] [Server thread/INFO]: PikachuDigsMC fell out of the world +2015-06-29 [12:37:05] [Server thread/INFO]: greencreeper138 fell out of the world +2015-06-29 [12:37:07] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:37:08] [Server thread/INFO]: Pr0pH3T123 fell out of the world +2015-06-29 [12:37:14] [Server thread/INFO]: O.O +2015-06-29 [12:37:46] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [12:37:46] [Server thread/INFO]: Loading server properties... +2015-06-29 [12:37:46] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [12:37:46] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [12:37:46] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [12:37:46] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [12:37:46] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [12:37:46] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [12:37:46] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [12:37:46] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [12:37:47] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [12:37:47] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [12:37:47] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [12:37:47] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [12:37:47] [Server thread/NOTICE]: Level "world" not found +2015-06-29 [12:37:47] [Server thread/INFO]: Preparing level "world" +2015-06-29 [12:37:47] [Server thread/NOTICE]: Spawn terrain for level "world" is being generated in the background +2015-06-29 [12:37:47] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [12:37:47] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [12:37:47] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [12:37:48] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [12:37:48] [Server thread/INFO]: Done (2.261s)! For help, type "help" or "?" +2015-06-29 [12:37:48] [Server thread/INFO]: Lpnt[/24.165.82.15:56570] logged in with entity id 1 at (world, 148.5808, 71, 48.7455) +2015-06-29 [12:37:48] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:56854] logged in with entity id 2 at (world, 128, 76, 128) +2015-06-29 [12:37:48] [Server thread/INFO]: greencreeper138[/50.149.17.203:61029] logged in with entity id 3 at (world, -18.0068, 70.9216, 109.6761) +2015-06-29 [12:37:49] [Server thread/INFO]: chissling[/1.152.97.61:57386] logged in with entity id 4 at (world, 146.7342, 65, 114.4504) +2015-06-29 [12:37:52] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [12:37:53] [Server thread/INFO]: Lpnt joined the game +2015-06-29 [12:37:54] [Server thread/INFO]: chissling joined the game +2015-06-29 [12:37:54] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:49369] logged in with entity id 5 at (world, 132.449, 77, 123.1425) +2015-06-29 [12:37:55] [Server thread/INFO]: Anonie[/69.123.212.47:57285] logged in with entity id 6 at (world, 120.7, 76, 200.9513) +2015-06-29 [12:37:55] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [12:37:56] [Server thread/INFO]: DaddyDean[/188.207.92.49:33169] logged in with entity id 7 at (world, 128, 76, 128) +2015-06-29 [12:37:57] [Server thread/INFO]: crafterthatcraft joined the game +2015-06-29 [12:37:58] [Server thread/INFO]: bswardx[/220.245.130.194:57037] logged in with entity id 8 at (world, 174.15, 74.5358, 72.2392) +2015-06-29 [12:37:59] [Server thread/INFO]: DaddyDean joined the game +2015-06-29 [12:37:59] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:37:59] [Server thread/INFO]: [CONSOLE: Set chissling's game mode to Creative Mode] +2015-06-29 [12:38:00] [Server thread/INFO]: StarRocket[/70.56.27.182:54812] logged in with entity id 9 at (world, 151.4561, 66, 126.3231) +2015-06-29 [12:38:01] [Server thread/INFO]: LemonJava[/50.80.210.108:53025] logged in with entity id 10 at (world, 128, 76, 128) +2015-06-29 [12:38:01] [Server thread/INFO]: bswardx joined the game +2015-06-29 [12:38:03] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:46288] logged in with entity id 11 at (world, 128, 76, 128) +2015-06-29 [12:38:03] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:38:04] [Server thread/INFO]: LemonJava joined the game +2015-06-29 [12:38:05] [Server thread/INFO]: Immovable[/184.163.201.200:51257] logged in with entity id 12 at (world, 147.2126, 65, 118.4079) +2015-06-29 [12:38:06] [Server thread/INFO]: Pr0pH3T123 joined the game +2015-06-29 [12:38:07] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:41638] logged in with entity id 13 at (world, 144.4241, 62, 118.4021) +2015-06-29 [12:38:08] [Server thread/INFO]: Immovable joined the game +2015-06-29 [12:38:10] [Server thread/INFO]: Charcoal_Inc joined the game +2015-06-29 [12:38:13] [Server thread/INFO]: [CONSOLE: Given Bedrock (7:0) * 64 to chissling] +2015-06-29 [12:38:14] [Server thread/INFO]: this is mp +2015-06-29 [12:38:16] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:61811] logged in with entity id 15 at (world, 152.5208, 65, 128.3) +2015-06-29 [12:38:17] [Server thread/NOTICE]: Player data not found for "whvian", creating new profile +2015-06-29 [12:38:17] [Server thread/INFO]: Whvian[/108.6.213.211:53175] logged in with entity id 16 at (world, 128, 4, 128) +2015-06-29 [12:38:18] [Server thread/INFO]: chissling... XD +2015-06-29 [12:38:19] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [12:38:19] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:54689] logged in with entity id 19 at (world, 126.3, 77, 28.1567) +2015-06-29 [12:38:20] [Server thread/INFO]: Artix[/68.32.132.196:54791] logged in with entity id 20 at (world, 128, 76, 128) +2015-06-29 [12:38:20] [Server thread/INFO]: Whvian joined the game +2015-06-29 [12:38:23] [Server thread/INFO]: Artix joined the game +2015-06-29 [12:38:23] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [12:38:24] [Server thread/INFO]: NinjaGuy_[/108.41.5.80:50962] logged out due to Outdated client! +2015-06-29 [12:38:29] [Server thread/INFO]: this is basically clans +2015-06-29 [12:38:31] [Server thread/INFO]: SophiaRose[/104.246.120.48:56872] logged in with entity id 33 at (world, 546.2043, 71, 19.3042) +2015-06-29 [12:38:35] [Server thread/INFO]: hai baez +2015-06-29 [12:38:37] [Server thread/INFO]: SophiaRose joined the game +2015-06-29 [12:38:38] [Server thread/INFO]: chubbipenguin11[/65.113.104.96:6962] logged out due to Outdated client! +2015-06-29 [12:38:39] [Server thread/INFO]: Garretteleven[/108.81.1.177:57486] logged in with entity id 46 at (world, 141.3549, 79, 110.4999) +2015-06-29 [12:38:41] [Server thread/INFO]: lol +2015-06-29 [12:38:42] [Server thread/INFO]: chis +2015-06-29 [12:38:42] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:38:44] [Server thread/INFO]: chubbipenguin11[/65.113.104.96:4163] logged out due to Outdated client! +2015-06-29 [12:38:45] [Server thread/INFO]: CLNZ +2015-06-29 [12:38:45] [Server thread/INFO]: hiss +2015-06-29 [12:38:48] [Server thread/INFO]: chiss +2015-06-29 [12:38:51] [Server thread/INFO]: Artix left the game +2015-06-29 [12:38:51] [Server thread/INFO]: Artix[/68.32.132.196:54791] logged out due to timeout +2015-06-29 [12:38:52] [Server thread/INFO]: Pr0pH3T123 left the game +2015-06-29 [12:38:52] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:46288] logged out due to timeout +2015-06-29 [12:38:57] [Server thread/INFO]: ia this clans alpha +2015-06-29 [12:38:59] [Server thread/INFO]: CodeName[/24.45.209.193:53876] logged in with entity id 61 at (world, 180.7, 78, 90.7) +2015-06-29 [12:39:01] [Server thread/INFO]: what is chiss making o.O +2015-06-29 [12:39:02] [Server thread/INFO]: CodeName joined the game +2015-06-29 [12:39:04] [Server thread/INFO]: clanz hype +2015-06-29 [12:39:07] [Server thread/NOTICE]: Player data not found for "art", creating new profile +2015-06-29 [12:39:07] [Server thread/INFO]: Art[/70.114.250.112:64307] logged in with entity id 67 at (world, 128, 4, 128) +2015-06-29 [12:39:08] [Server thread/INFO]: soz chissling +2015-06-29 [12:39:10] [Server thread/INFO]: Art joined the game +2015-06-29 [12:39:12] [Server thread/INFO]: this is true art Chiss +2015-06-29 [12:39:16] [Server thread/INFO]: edgardme3[/74.194.110.14:58645] logged in with entity id 69 at (world, 180.1781, 76, 101.9068) +2015-06-29 [12:39:17] [Server thread/INFO]: this is totes clanz +2015-06-29 [12:39:18] [Server thread/INFO]: Anonie died +2015-06-29 [12:39:18] [Server thread/INFO]: im lost I cant find anyone +2015-06-29 [12:39:19] [Server thread/INFO]: edgardme3 joined the game +2015-06-29 [12:39:22] [Server thread/INFO]: guys let chiss build >.> +2015-06-29 [12:39:25] [Server thread/INFO]: crafter are you real? +2015-06-29 [12:39:31] [Server thread/INFO]: greencreeper138 died +2015-06-29 [12:39:32] [Server thread/INFO]: the real one? +2015-06-29 [12:39:36] [Server thread/INFO]: Not_StarRocket[/70.56.27.182:54146] logged in with entity id 75 at (world, 128, 76, 128) +2015-06-29 [12:39:37] [Server thread/INFO]: [Server] stay at spawn +2015-06-29 [12:39:39] [Server thread/INFO]: Not_StarRocket joined the game +2015-06-29 [12:39:40] [Server thread/INFO]: Clanz: PE +2015-06-29 [12:39:51] [Server thread/INFO]: Listen to Lord Chissling +2015-06-29 [12:39:51] [Server thread/INFO]: SophiaRose died +2015-06-29 [12:39:52] [Server thread/INFO]: Artix[/68.32.132.196:59739] logged in with entity id 78 at (world, 128, 4, 128) +2015-06-29 [12:39:55] [Server thread/INFO]: Artix joined the game +2015-06-29 [12:39:58] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:58611] logged in with entity id 81 at (world, 146.0262, 4, 110.7707) +2015-06-29 [12:40:00] [Server thread/INFO]: O +2015-06-29 [12:40:01] [Server thread/INFO]: Pr0pH3T123 joined the game +2015-06-29 [12:40:02] [Server thread/INFO]: Sophia lol +2015-06-29 [12:40:02] [Server thread/INFO]: dis is muy macho +2015-06-29 [12:40:03] [Server thread/INFO]: artix +2015-06-29 [12:40:03] [Server thread/INFO]: Artix xx +2015-06-29 [12:40:07] [Server thread/INFO]: omq its artix +2015-06-29 [12:40:08] [Server thread/NOTICE]: Player data not found for "the12thenderman", creating new profile +2015-06-29 [12:40:08] [Server thread/INFO]: The12thEnderman[/73.23.42.239:52717] logged in with entity id 82 at (world, 128, 4, 128) +2015-06-29 [12:40:10] [Server thread/INFO]: yayay people +2015-06-29 [12:40:11] [Server thread/INFO]: The12thEnderman joined the game +2015-06-29 [12:40:11] [Server thread/INFO]: hi +2015-06-29 [12:40:14] [Server thread/INFO]: RosaEpicBeauty died +2015-06-29 [12:40:20] [Server thread/INFO]: sup artix +2015-06-29 [12:40:21] [Server thread/INFO]: 15Ibans[/72.91.34.54:59901] logged in with entity id 92 at (world, 158.5066, 65, 119.4727) +2015-06-29 [12:40:24] [Server thread/INFO]: are you the real one? +2015-06-29 [12:40:24] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [12:40:26] [Server thread/INFO]: test[/75.166.54.109:52155] logged in with entity id 94 at (world, 185.8204, 78, 95.8477) +2015-06-29 [12:40:29] [Server thread/INFO]: yes? +2015-06-29 [12:40:30] [Server thread/INFO]: test joined the game +2015-06-29 [12:40:32] [Server thread/INFO]: omq hi +2015-06-29 [12:40:32] [Server thread/INFO]: PizzaMan319[/24.112.237.66:33109] logged in with entity id 96 at (world, 145.2988, 65, 121.1558) +2015-06-29 [12:40:32] [Server thread/WARNING]: Pr0pH3T123 moved wrongly! +2015-06-29 [12:40:35] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [12:40:39] [Server thread/INFO]: hiya +2015-06-29 [12:40:40] [Server thread/INFO]: i have sticks now... +2015-06-29 [12:40:40] [Server thread/INFO]: hi +2015-06-29 [12:40:41] [Server thread/INFO]: RIP chiss +2015-06-29 [12:40:43] [Server thread/NOTICE]: Player data not found for "fiercet123", creating new profile +2015-06-29 [12:40:43] [Server thread/INFO]: fierceT123[/162.212.118.3:29512] logged in with entity id 97 at (world, 128, 4, 128) +2015-06-29 [12:40:43] [Server thread/INFO]: is this the real mineplex pe? +2015-06-29 [12:40:46] [Server thread/INFO]: fierceT123 joined the game +2015-06-29 [12:40:47] [Server thread/INFO]: test left the game +2015-06-29 [12:40:47] [Server thread/INFO]: test[/75.166.54.109:52155] logged out due to client disconnect +2015-06-29 [12:40:47] [Server thread/INFO]: no +2015-06-29 [12:40:48] [Server thread/INFO]: no +2015-06-29 [12:40:51] [Server thread/INFO]: xD +2015-06-29 [12:40:51] [Server thread/INFO]: xD another cool bunker charcoal +2015-06-29 [12:40:53] [Server thread/INFO]: Still need us? +2015-06-29 [12:40:58] [Server thread/INFO]: is this the krusty krab +2015-06-29 [12:41:02] [Server thread/INFO]: then why are we all here? +2015-06-29 [12:41:08] [Server thread/INFO]: i'm the dirt bunker king +2015-06-29 [12:41:09] [Server thread/INFO]: no this is charcoal +2015-06-29 [12:41:21] [Server thread/INFO]: Immovable left the game +2015-06-29 [12:41:21] [Server thread/INFO]: Immovable[/184.163.201.200:51257] logged out due to timeout +2015-06-29 [12:41:22] [Server thread/INFO]: Pr0pH3T123 left the game +2015-06-29 [12:41:22] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:58611] logged out due to client disconnect +2015-06-29 [12:41:28] [Server thread/INFO]: Wow. This sucks ass +2015-06-29 [12:41:33] [Server thread/INFO]: this is fancy +2015-06-29 [12:41:33] [Server thread/INFO]: this is fancy +2015-06-29 [12:41:44] [Server thread/INFO]: xD poor chiss +2015-06-29 [12:41:44] [Server thread/INFO]: lol +2015-06-29 [12:41:45] [Server thread/INFO]: chill +2015-06-29 [12:41:45] [Server thread/INFO]: its a test +2015-06-29 [12:41:54] [Server thread/INFO]: for what +2015-06-29 [12:42:02] [Server thread/INFO]: A wild Chissling appears +2015-06-29 [12:42:02] [Server thread/INFO]: this house is amazing +2015-06-29 [12:42:08] [Server thread/NOTICE]: Player data not found for "xcookiecraft", creating new profile +2015-06-29 [12:42:08] [Server thread/INFO]: xCookieCraft[/189.159.230.113:63121] logged in with entity id 158 at (world, 128, 4, 128) +2015-06-29 [12:42:11] [Server thread/INFO]: brb +2015-06-29 [12:42:11] [Server thread/INFO]: xCookieCraft joined the game +2015-06-29 [12:42:12] [Server thread/INFO]: LemonJava left the game +2015-06-29 [12:42:12] [Server thread/INFO]: LemonJava[/50.80.210.108:53025] logged out due to client disconnect +2015-06-29 [12:42:15] [Server thread/NOTICE]: Player data not found for "chubbipenguin11", creating new profile +2015-06-29 [12:42:15] [Server thread/INFO]: chubbipenguin11[/65.113.104.96:4724] logged in with entity id 161 at (world, 128, 4, 128) +2015-06-29 [12:42:15] [Server thread/INFO]: Art left the game +2015-06-29 [12:42:15] [Server thread/INFO]: Art[/70.114.250.112:64307] logged out due to client disconnect +2015-06-29 [12:42:15] [Server thread/INFO]: LemonJava[/50.80.210.108:49341] logged in with entity id 162 at (world, 151.7694, 4, 128.1217) +2015-06-29 [12:42:18] [Server thread/INFO]: test for CLANSZ?! +2015-06-29 [12:42:18] [Server thread/INFO]: chubbipenguin11 joined the game +2015-06-29 [12:42:18] [Server thread/INFO]: LemonJava joined the game +2015-06-29 [12:42:22] [Server thread/INFO]: * RosaEpicBeauty searches everywhere for a rose +2015-06-29 [12:42:22] [Server thread/INFO]: HELP +2015-06-29 [12:42:23] [Server thread/WARNING]: Whvian moved wrongly! +2015-06-29 [12:42:24] [Server thread/NOTICE]: Player data not found for "racgiman", creating new profile +2015-06-29 [12:42:24] [Server thread/INFO]: RacgiMan[/70.113.10.54:63166] logged in with entity id 171 at (world, 128, 4, 128) +2015-06-29 [12:42:27] [Server thread/INFO]: RacgiMan joined the game +2015-06-29 [12:42:28] [Server thread/INFO]: Immovable[/184.163.201.200:53467] logged in with entity id 177 at (world, 142.1254, 4, 115.4624) +2015-06-29 [12:42:31] [Server thread/INFO]: Immovable joined the game +2015-06-29 [12:42:34] [Server thread/INFO]: fierceT123 left the game +2015-06-29 [12:42:34] [Server thread/INFO]: fierceT123[/162.212.118.3:29512] logged out due to client disconnect +2015-06-29 [12:42:39] [Server thread/NOTICE]: Player data not found for "spu_", creating new profile +2015-06-29 [12:42:39] [Server thread/INFO]: Spu_[/70.114.250.112:63004] logged in with entity id 181 at (world, 128, 4, 128) +2015-06-29 [12:42:39] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [12:42:39] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:56854] logged out due to timeout +2015-06-29 [12:42:40] [Server thread/INFO]: well this is weird +2015-06-29 [12:42:42] [Server thread/INFO]: Spu_ joined the game +2015-06-29 [12:42:43] [Server thread/INFO]: lol if tehy added clans in pe +2015-06-29 [12:42:45] [Server thread/INFO]: lol PE parkoue +2015-06-29 [12:42:47] [Server thread/INFO]: windows +2015-06-29 [12:42:48] [Server thread/INFO]: Clamz +2015-06-29 [12:42:50] [Server thread/INFO]: ... +2015-06-29 [12:42:50] [Server thread/INFO]: racgi +2015-06-29 [12:42:52] [Server thread/INFO]: lol the fake people +2015-06-29 [12:42:52] [Server thread/INFO]: hi +2015-06-29 [12:42:54] [Server thread/INFO]: you all scrubs +2015-06-29 [12:42:56] [Server thread/INFO]: LemonJava left the game +2015-06-29 [12:42:56] [Server thread/INFO]: LemonJava[/50.80.210.108:49341] logged out due to timeout +2015-06-29 [12:42:56] [Server thread/INFO]: hey crafter +2015-06-29 [12:42:56] [Server thread/INFO]: who came as spu +2015-06-29 [12:43:01] [Server thread/INFO]: The12thEnderman died +2015-06-29 [12:43:03] [Server thread/INFO]: CLANZ!?! +2015-06-29 [12:43:06] [Server thread/INFO]: lol hi spu +2015-06-29 [12:43:08] [Server thread/INFO]: i like clamz +2015-06-29 [12:43:09] [Server thread/INFO]: some troll, obs. +2015-06-29 [12:43:11] [Server thread/NOTICE]: Player data not found for "ooo", creating new profile +2015-06-29 [12:43:11] [Server thread/INFO]: ooo[/172.56.13.252:24197] logged in with entity id 185 at (world, 128, 4, 128) +2015-06-29 [12:43:14] [Server thread/INFO]: ooo joined the game +2015-06-29 [12:43:14] [Server thread/INFO]: Immovable left the game +2015-06-29 [12:43:14] [Server thread/INFO]: Immovable[/184.163.201.200:53467] logged out due to timeout +2015-06-29 [12:43:17] [Server thread/INFO]: pikachomp[/108.20.187.165:51506] logged in with entity id 187 at (world, 168.0167, 73, 115.0567) +2015-06-29 [12:43:20] [Server thread/INFO]: pikachomp joined the game +2015-06-29 [12:43:27] [Server thread/INFO]: when i left this server crumbled +2015-06-29 [12:43:41] [Server thread/INFO]: fake spu +2015-06-29 [12:43:44] [Server thread/INFO]: fake +2015-06-29 [12:43:44] [Server thread/INFO]: Chiss must be a wind god +2015-06-29 [12:43:46] [Server thread/INFO]: m8 +2015-06-29 [12:43:49] [Server thread/INFO]: lol +2015-06-29 [12:43:49] [Server thread/NOTICE]: Player data not found for "brickboss64", creating new profile +2015-06-29 [12:43:49] [Server thread/INFO]: BrickBoss64[/108.167.41.208:53574] logged in with entity id 195 at (world, 128, 4, 128) +2015-06-29 [12:43:52] [Server thread/INFO]: BrickBoss64 joined the game +2015-06-29 [12:44:03] [Server thread/INFO]: Immovable[/184.163.201.200:61151] logged in with entity id 207 at (world, 137.7005, 4, 116.0485) +2015-06-29 [12:44:05] [Server thread/INFO]: yeah im fake xD +2015-06-29 [12:44:06] [Server thread/INFO]: Immovable joined the game +2015-06-29 [12:44:08] [Server thread/INFO]: loving the fakes though XD +2015-06-29 [12:44:20] [Server thread/INFO]: Immovable left the game +2015-06-29 [12:44:20] [Server thread/INFO]: Immovable[/184.163.201.200:61151] logged out due to timeout +2015-06-29 [12:44:21] [Server thread/WARNING]: ooo moved wrongly! +2015-06-29 [12:44:23] [Server thread/NOTICE]: Player data not found for "redxtech", creating new profile +2015-06-29 [12:44:23] [Server thread/INFO]: RedXTech[/68.146.88.146:48374] logged in with entity id 227 at (world, 128, 4, 128) +2015-06-29 [12:44:24] [Server thread/INFO]: MYNAMEISJEFF +2015-06-29 [12:44:26] [Server thread/INFO]: RedXTech joined the game +2015-06-29 [12:44:27] [Server thread/INFO]: im da real artix tho +2015-06-29 [12:44:32] [Server thread/INFO]: im so high up +2015-06-29 [12:44:34] [Server thread/INFO]: The12thEnderman left the game +2015-06-29 [12:44:34] [Server thread/INFO]: The12thEnderman[/73.23.42.239:52717] logged out due to timeout +2015-06-29 [12:44:36] [Server thread/WARNING]: SophiaRose moved wrongly! +2015-06-29 [12:44:37] [Server thread/INFO]: nobody can impersonate me +2015-06-29 [12:44:38] [Server thread/INFO]: hai +2015-06-29 [12:44:38] [Server thread/INFO]: im really rosa +2015-06-29 [12:44:39] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:49230] logged in with entity id 246 at (world, 154.0292, 4, 110.2449) +2015-06-29 [12:44:42] [Server thread/INFO]: Pr0pH3T123 joined the game +2015-06-29 [12:44:44] [Server thread/INFO]: GARRETT pla dont +2015-06-29 [12:44:44] [Server thread/INFO]: Spu_ left the game +2015-06-29 [12:44:44] [Server thread/INFO]: Spu_[/70.114.250.112:63004] logged out due to client disconnect +2015-06-29 [12:44:47] [Server thread/INFO]: Spu_[/70.114.250.112:54295] logged in with entity id 258 at (world, 130.5674, 4, 125.2016) +2015-06-29 [12:44:48] [Server thread/INFO]: pls dont fall +2015-06-29 [12:44:49] [Server thread/INFO]: so is this a thing now +2015-06-29 [12:44:50] [Server thread/INFO]: I am really me +2015-06-29 [12:44:50] [Server thread/INFO]: Im the real Lpmt though... heh... *noonecares* +2015-06-29 [12:44:51] [Server thread/INFO]: Spu_ joined the game +2015-06-29 [12:44:53] [Server thread/INFO]: fierceT123[/162.212.118.3:19518] logged in with entity id 262 at (world, 142.2464, 4, 104.7972) +2015-06-29 [12:44:53] [Server thread/INFO]: and I'm really a cookie +2015-06-29 [12:44:56] [Server thread/INFO]: fierceT123 joined the game +2015-06-29 [12:45:05] [Server thread/INFO]: well I assume most people are real +2015-06-29 [12:45:06] [Server thread/INFO]: im the real pemguin +2015-06-29 [12:45:06] [Server thread/INFO]: Spu_ left the game +2015-06-29 [12:45:06] [Server thread/INFO]: Spu_[/70.114.250.112:54295] logged out due to client disconnect +2015-06-29 [12:45:09] [Server thread/INFO]: jRayx[/70.193.215.134:6380] logged in with entity id 284 at (world, 90.486, 95, 216.3598) +2015-06-29 [12:45:14] [Server thread/INFO]: I'm the fake Star +2015-06-29 [12:45:14] [Server thread/INFO]: im the real Star +2015-06-29 [12:45:15] [Server thread/INFO]: jRayx joined the game +2015-06-29 [12:45:20] [Server thread/INFO]: is this testing for CLAMZ?! +2015-06-29 [12:45:20] [Server thread/INFO]: THIS SERVER IS SO GAY WHOEVER MADE IT SHOULD GER CANCER +2015-06-29 [12:45:20] [Server thread/INFO]: CodeName left the game +2015-06-29 [12:45:20] [Server thread/INFO]: CodeName[/24.45.209.193:53876] logged out due to client disconnect +2015-06-29 [12:45:21] [Server thread/INFO]: Artix left the game +2015-06-29 [12:45:21] [Server thread/INFO]: Artix[/68.32.132.196:59739] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [12:45:21] [Server thread/INFO]: Artix[/70.114.250.112:57868] logged in with entity id 300 at (world, 132.8025, 4, 105.8097) +2015-06-29 [12:45:23] [Server thread/INFO]: i dont liks yu +2015-06-29 [12:45:24] [Server thread/INFO]: Artix joined the game +2015-06-29 [12:45:25] [Server thread/INFO]: BrickBoss64 left the game +2015-06-29 [12:45:25] [Server thread/INFO]: BrickBoss64[/108.167.41.208:53574] logged out due to client disconnect +2015-06-29 [12:45:27] [Server thread/INFO]: Immovable[/184.163.201.200:49906] logged in with entity id 307 at (world, 137.7005, 4, 116.0485) +2015-06-29 [12:45:30] [Server thread/INFO]: Immovable joined the game +2015-06-29 [12:45:30] [Server thread/INFO]: mind f +2015-06-29 [12:45:32] [Server thread/INFO]: fierceT123 left the game +2015-06-29 [12:45:32] [Server thread/INFO]: fierceT123[/162.212.118.3:19518] logged out due to client disconnect +2015-06-29 [12:45:42] [Server thread/INFO]: yay for leaks i guess +2015-06-29 [12:45:43] [Server thread/INFO]: Immovable left the game +2015-06-29 [12:45:43] [Server thread/INFO]: Immovable[/184.163.201.200:49906] logged out due to timeout +2015-06-29 [12:45:45] [Server thread/INFO]: We should play some spleef +2015-06-29 [12:45:46] [Server thread/INFO]: Artix left the game +2015-06-29 [12:45:46] [Server thread/INFO]: Artix[/70.114.250.112:57868] logged out due to timeout +2015-06-29 [12:45:49] [Server thread/INFO]: all 5he randoms +2015-06-29 [12:45:53] [Server thread/INFO]: ikr daddydean +2015-06-29 [12:45:57] [Server thread/INFO]: So used to chat moderating. I was about to say "Watch the caps" +2015-06-29 [12:45:58] [Server thread/NOTICE]: Player data not found for "caleb", creating new profile +2015-06-29 [12:45:58] [Server thread/INFO]: Caleb[/70.114.250.112:52558] logged in with entity id 369 at (world, 128, 4, 128) +2015-06-29 [12:46:01] [Server thread/INFO]: Caleb joined the game +2015-06-29 [12:46:01] [Server thread/INFO]: honestly mineplex PE would be fun for like 2 games. +2015-06-29 [12:46:02] [Server thread/INFO]: charcoal should be builder on mineplex this house is soooo good +2015-06-29 [12:46:04] [Server thread/INFO]: chubbipenguin11 left the game +2015-06-29 [12:46:04] [Server thread/INFO]: chubbipenguin11[/65.113.104.96:4724] logged out due to client disconnect +2015-06-29 [12:46:07] [Server thread/INFO]: if you dont like it then leave feirce not forcing anyone to come... +2015-06-29 [12:46:11] [Server thread/INFO]: Artix[/68.32.132.196:54615] logged in with entity id 379 at (world, 132.8362, 4, 108.8003) +2015-06-29 [12:46:14] [Server thread/INFO]: Artix joined the game +2015-06-29 [12:46:23] [Server thread/INFO]: i am actualoy havin fun +2015-06-29 [12:46:25] [Server thread/INFO]: Artix left the game +2015-06-29 [12:46:25] [Server thread/INFO]: Artix[/68.32.132.196:54615] logged out due to timeout +2015-06-29 [12:46:25] [Server thread/INFO]: runner and sg might be interesting +2015-06-29 [12:46:28] [Server thread/INFO]: Artix[/68.32.132.196:33226] logged in with entity id 394 at (world, 132.8362, 4, 108.8003) +2015-06-29 [12:46:29] [Server thread/INFO]: okay, im done impersonating xD +2015-06-29 [12:46:32] [Server thread/INFO]: Artix joined the game +2015-06-29 [12:46:33] [Server thread/INFO]: ooo left the game +2015-06-29 [12:46:33] [Server thread/INFO]: ooo[/172.56.13.252:24197] logged out due to timeout +2015-06-29 [12:46:34] [Server thread/INFO]: actually* +2015-06-29 [12:46:41] [Server thread/INFO]: Super spleef would be fun +2015-06-29 [12:46:45] [Server thread/INFO]: the f +2015-06-29 [12:46:48] [Server thread/INFO]: what +2015-06-29 [12:46:52] [Server thread/INFO]: fake me +2015-06-29 [12:46:52] [Server thread/INFO]: Immovable[/184.163.201.200:52421] logged in with entity id 401 at (world, 137.7005, 4, 116.0485) +2015-06-29 [12:46:55] [Server thread/INFO]: Immovable joined the game +2015-06-29 [12:46:56] [Server thread/INFO]: ooo[/172.56.13.252:29356] logged in with entity id 402 at (world, 137.3809, 5.1661, 102.2849) +2015-06-29 [12:46:56] [Server thread/INFO]: please +2015-06-29 [12:46:57] [Server thread/NOTICE]: Player data not found for "sierrraaa", creating new profile +2015-06-29 [12:46:57] [Server thread/INFO]: Sierrraaa[/66.87.149.77:17538] logged in with entity id 403 at (world, 128, 4, 128) +2015-06-29 [12:46:58] [Server thread/INFO]: artix +2015-06-29 [12:46:59] [Server thread/INFO]: ooo joined the game +2015-06-29 [12:46:59] [Server thread/INFO]: i actually know how to make a spleef game +2015-06-29 [12:47:00] [Server thread/INFO]: .-. +2015-06-29 [12:47:01] [Server thread/INFO]: Sierrraaa joined the game +2015-06-29 [12:47:04] [Server thread/INFO]: theres a d +2015-06-29 [12:47:04] [Server thread/INFO]: Sierrraaa left the game +2015-06-29 [12:47:04] [Server thread/INFO]: Sierrraaa[/66.87.149.77:17538] logged out due to client disconnect +2015-06-29 [12:47:08] [Server thread/INFO]: i need creatuve thou +2015-06-29 [12:47:08] [Server thread/INFO]: fake me +2015-06-29 [12:47:08] [Server thread/INFO]: Anonie left the game +2015-06-29 [12:47:08] [Server thread/INFO]: Anonie[/69.123.212.47:57285] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [12:47:08] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:59228] logged in with entity id 406 at (world, 143.9024, 4, 113.27) +2015-06-29 [12:47:10] [Server thread/INFO]: .-. +2015-06-29 [12:47:12] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [12:47:13] [Server thread/INFO]: Anonie[/69.123.212.47:53231] logged in with entity id 407 at (world, 130.6618, 5, 109.7923) +2015-06-29 [12:47:16] [Server thread/INFO]: Anonie joined the game +2015-06-29 [12:47:18] [Server thread/INFO]: why is there a fake me +2015-06-29 [12:47:21] [Server thread/INFO]: ooo left the game +2015-06-29 [12:47:21] [Server thread/INFO]: ooo[/172.56.13.252:29356] logged out due to timeout +2015-06-29 [12:47:28] [Server thread/WARNING]: Garretteleven moved wrongly! +2015-06-29 [12:47:29] [Server thread/INFO]: i got kicked for flyi g +2015-06-29 [12:47:31] [Server thread/INFO]: wooooo +2015-06-29 [12:47:33] [Server thread/INFO]: what is this ;-; +2015-06-29 [12:47:34] [Server thread/INFO]: Immovable left the game +2015-06-29 [12:47:35] [Server thread/INFO]: Immovable[/184.163.201.200:52421] logged out due to timeout +2015-06-29 [12:48:01] [Server thread/INFO]: StarRocket left the game +2015-06-29 [12:48:01] [Server thread/INFO]: StarRocket[/70.56.27.182:54812] logged out due to client disconnect +2015-06-29 [12:48:04] [Server thread/INFO]: Garretteleven left the game +2015-06-29 [12:48:04] [Server thread/INFO]: Garretteleven[/108.81.1.177:57486] logged out due to timeout +2015-06-29 [12:48:09] [Server thread/INFO]: Garretteleven[/108.81.1.177:51964] logged in with entity id 421 at (world, 167.1314, 4, 131.51) +2015-06-29 [12:48:11] [Server thread/NOTICE]: Player data not found for "fakesven", creating new profile +2015-06-29 [12:48:11] [Server thread/INFO]: FakeSven[/184.163.201.200:62351] logged in with entity id 422 at (world, 128, 4, 128) +2015-06-29 [12:48:12] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:48:14] [Server thread/INFO]: FakeSven joined the game +2015-06-29 [12:48:21] [Server thread/INFO]: clans alpha...alpha +2015-06-29 [12:48:22] [Server thread/INFO]: Not_StarRocket left the game +2015-06-29 [12:48:22] [Server thread/INFO]: Not_StarRocket[/70.56.27.182:54146] logged out due to client disconnect +2015-06-29 [12:48:25] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [12:48:26] [Server thread/INFO]: i cant see +2015-06-29 [12:48:27] [Server thread/INFO]: notice me fake svenpai +2015-06-29 [12:48:29] [Server thread/INFO]: crafterthatcraft left the game +2015-06-29 [12:48:29] [Server thread/INFO]: crafterthatcraft[/68.44.1.93:49369] logged out due to timeout +2015-06-29 [12:48:30] [Server thread/INFO]: hey fakesvenpie +2015-06-29 [12:48:31] [Server thread/INFO]: Made a giant LOL... *victory fist* +2015-06-29 [12:48:33] [Server thread/INFO]: ^ +2015-06-29 [12:48:33] [Server thread/NOTICE]: Player data not found for "anthony2202", creating new profile +2015-06-29 [12:48:33] [Server thread/INFO]: Anthony2202[/172.88.60.19:62612] logged in with entity id 429 at (world, 128, 4, 128) +2015-06-29 [12:48:36] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [12:48:37] [Server thread/INFO]: someone get torches +2015-06-29 [12:48:40] [Server thread/WARNING]: SophiaRose moved wrongly! +2015-06-29 [12:48:41] [Server thread/WARNING]: SophiaRose moved wrongly! +2015-06-29 [12:48:41] [Server thread/INFO]: I'm not Sven huehue +2015-06-29 [12:48:43] [Server thread/INFO]: RedXTech left the game +2015-06-29 [12:48:43] [Server thread/INFO]: RedXTech[/68.146.88.146:48374] logged out due to client disconnect +2015-06-29 [12:48:45] [Server thread/WARNING]: SophiaRose moved wrongly! +2015-06-29 [12:48:49] [Server thread/NOTICE]: Player data not found for "dennis", creating new profile +2015-06-29 [12:48:49] [Server thread/INFO]: dennis[/108.82.94.94:64840] logged in with entity id 431 at (world, 128, 4, 128) +2015-06-29 [12:48:49] [Server thread/INFO]: Hai +2015-06-29 [12:48:52] [Server thread/INFO]: dennis joined the game +2015-06-29 [12:48:55] [Server thread/INFO]: ;-; +2015-06-29 [12:48:56] [Server thread/INFO]: I'm his mentee though xD +2015-06-29 [12:48:57] [Server thread/INFO]: thats why i called you fake +2015-06-29 [12:48:57] [Server thread/INFO]: hey anthony +2015-06-29 [12:49:01] [Server thread/INFO]: lol chiss hy +2015-06-29 [12:49:02] [Server thread/INFO]: Getting impersonated is always fun +2015-06-29 [12:49:03] [Server thread/INFO]: charcoal do you have creative? +2015-06-29 [12:49:07] [Server thread/INFO]: i love mineplex +2015-06-29 [12:49:08] [Server thread/INFO]: no +2015-06-29 [12:49:09] [Server thread/INFO]: LoggedIn[/12.238.61.12:63518] logged in with entity id 433 at (world, 132.4875, 76, 127.1632) +2015-06-29 [12:49:10] [Server thread/NOTICE]: Player data not found for "maukamauka", creating new profile +2015-06-29 [12:49:10] [Server thread/INFO]: maukamauka[/52.6.86.115:55214] logged in with entity id 434 at (world, 128, 4, 128) +2015-06-29 [12:49:11] [Server thread/INFO]: i wish +2015-06-29 [12:49:12] [Server thread/INFO]: LoggedIn joined the game +2015-06-29 [12:49:13] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [12:49:18] [Server thread/INFO]: hry guys +2015-06-29 [12:49:19] [Server thread/INFO]: loggeeed +2015-06-29 [12:49:19] [Server thread/INFO]: StarRocket[/70.56.27.182:53360] logged in with entity id 438 at (world, 155.2115, 4, 117.7951) +2015-06-29 [12:49:19] [Server thread/NOTICE]: Player data not found for "milespersecond", creating new profile +2015-06-29 [12:49:19] [Server thread/INFO]: MilesPerSecond[/67.171.182.232:51442] logged in with entity id 439 at (world, 128, 4, 128) +2015-06-29 [12:49:22] [Server thread/INFO]: how did you get a wood shovel the +2015-06-29 [12:49:22] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [12:49:22] [Server thread/INFO]: hey* +2015-06-29 [12:49:22] [Server thread/INFO]: MilesPerSecond joined the game +2015-06-29 [12:49:23] [Server thread/INFO]: RosaEpicBeauty died +2015-06-29 [12:49:24] [Server thread/INFO]: mauka! +2015-06-29 [12:49:24] [Server thread/INFO]: the +2015-06-29 [12:49:27] [Server thread/WARNING]: Pr0pH3T123 moved wrongly! +2015-06-29 [12:49:28] [Server thread/INFO]: heyoo +2015-06-29 [12:49:34] [Server thread/WARNING]: dennis moved wrongly! +2015-06-29 [12:49:35] [Server thread/INFO]: FakeSven left the game +2015-06-29 [12:49:35] [Server thread/INFO]: FakeSven[/184.163.201.200:62351] logged out due to timeout +2015-06-29 [12:49:38] [Server thread/INFO]: from the stress test world +2015-06-29 [12:49:41] [Server thread/INFO]: Needa change my skin, brb +2015-06-29 [12:49:41] [Server thread/INFO]: id expect more chat hype +2015-06-29 [12:49:45] [Server thread/NOTICE]: Player data not found for "xalec", creating new profile +2015-06-29 [12:49:45] [Server thread/INFO]: xAlec[/108.35.168.93:43252] logged in with entity id 466 at (world, 128, 4, 128) +2015-06-29 [12:49:45] [Server thread/INFO]: oh +2015-06-29 [12:49:46] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [12:49:46] [Server thread/INFO]: Anthony2202[/172.88.60.19:62612] logged out due to client disconnect +2015-06-29 [12:49:46] [Server thread/INFO]: This is my new favorite minigame! +2015-06-29 [12:49:48] [Server thread/INFO]: xAlec joined the game +2015-06-29 [12:49:51] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [12:49:56] [Server thread/INFO]: is ths clqns? +2015-06-29 [12:49:57] [Server thread/INFO]: this honestly holds up well +2015-06-29 [12:49:59] [Server thread/INFO]: wot is this +2015-06-29 [12:50:03] [Server thread/INFO]: clans +2015-06-29 [12:50:06] [Server thread/INFO]: clanz +2015-06-29 [12:50:06] [Server thread/INFO]: this is clans +2015-06-29 [12:50:09] [Server thread/INFO]: CodeName[/24.45.209.193:56037] logged in with entity id 491 at (world, 161.9077, 4, 115.3684) +2015-06-29 [12:50:12] [Server thread/INFO]: CodeName joined the game +2015-06-29 [12:50:15] [Server thread/INFO]: ph hi +2015-06-29 [12:50:15] [Server thread/INFO]: The trolls are real +2015-06-29 [12:50:16] [Server thread/INFO]: Clans?! +2015-06-29 [12:50:18] [Server thread/INFO]: MilesPerSecond left the game +2015-06-29 [12:50:18] [Server thread/INFO]: MilesPerSecond[/67.171.182.232:51442] logged out due to timeout +2015-06-29 [12:50:18] [Server thread/INFO]: ive hoped for something like this for awhile +2015-06-29 [12:50:18] [Server thread/INFO]: not clans +2015-06-29 [12:50:21] [Server thread/INFO]: clans +2015-06-29 [12:50:22] [Server thread/INFO]: maukamauka left the game +2015-06-29 [12:50:22] [Server thread/INFO]: maukamauka[/52.6.86.115:55214] logged out due to timeout +2015-06-29 [12:50:22] [Server thread/INFO]: is this clans +2015-06-29 [12:50:23] [Server thread/INFO]: but mobile clans +2015-06-29 [12:50:25] [Server thread/INFO]: this is clans +2015-06-29 [12:50:25] [Server thread/INFO]: ye +2015-06-29 [12:50:28] [Server thread/INFO]: sadly impersonation is an issues +2015-06-29 [12:50:32] [Server thread/INFO]: MilesPerSecond[/67.171.182.232:52679] logged in with entity id 515 at (world, 157.3712, 9, 133.804) +2015-06-29 [12:50:33] [Server thread/INFO]: issue* +2015-06-29 [12:50:33] [Server thread/INFO]: DaddyDean left the game +2015-06-29 [12:50:33] [Server thread/INFO]: DaddyDean[/188.207.92.49:33169] logged out due to timeout +2015-06-29 [12:50:35] [Server thread/INFO]: MilesPerSecond joined the game +2015-06-29 [12:50:44] [Server thread/INFO]: THIS IS CLANS EVERYBODY. WHAT YOU HAVE ALL BEEN WAITING FOR +2015-06-29 [12:50:50] [Server thread/INFO]: pikachomp left the game +2015-06-29 [12:50:50] [Server thread/INFO]: pikachomp[/108.20.187.165:51506] logged out due to client disconnect +2015-06-29 [12:50:51] [Server thread/INFO]: chubbipenguin11[/65.113.104.96:4257] logged in with entity id 543 at (world, 142.0308, 4, 111.6509) +2015-06-29 [12:50:54] [Server thread/INFO]: EOO +2015-06-29 [12:50:54] [Server thread/INFO]: chubbipenguin11 joined the game +2015-06-29 [12:50:55] [Server thread/INFO]: * Lpnt huehue +2015-06-29 [12:50:56] [Server thread/INFO]: lol in pe +2015-06-29 [12:50:57] [Server thread/INFO]: WOO* +2015-06-29 [12:50:59] [Server thread/INFO]: not pc +2015-06-29 [12:50:59] [Server thread/WARNING]: Pr0pH3T123 moved wrongly! +2015-06-29 [12:51:00] [Server thread/INFO]: Garretteleven fell from a high place +2015-06-29 [12:51:00] [Server thread/INFO]: How can we fix impersonation? +2015-06-29 [12:51:02] [Server thread/INFO]: * RacgiMan lol +2015-06-29 [12:51:03] [Server thread/INFO]: PUT DOWN SOME TORCHES IF YOU'RE AN OWNER SOMEONE PLS TY +2015-06-29 [12:51:07] [Server thread/INFO]: maukamauka[/52.6.86.115:61853] logged in with entity id 553 at (world, 156.6983, 9, 135.0588) +2015-06-29 [12:51:10] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [12:51:12] [Server thread/INFO]: xAlec left the game +2015-06-29 [12:51:12] [Server thread/INFO]: xAlec[/108.35.168.93:43252] logged out due to timeout +2015-06-29 [12:51:19] [Server thread/INFO]: on mobile? i dont think we can +2015-06-29 [12:51:19] [Server thread/INFO]: biohazard_[/76.16.212.5:59355] logged in with entity id 573 at (world, 128, 62, 128) +2015-06-29 [12:51:20] [Server thread/INFO]: ooo[/172.56.13.252:41542] logged in with entity id 577 at (world, 137.3809, 4, 102.2849) +2015-06-29 [12:51:22] [Server thread/INFO]: biohazard_ joined the game +2015-06-29 [12:51:23] [Server thread/INFO]: ooo joined the game +2015-06-29 [12:51:24] [Server thread/INFO]: sadly +2015-06-29 [12:51:25] [Server thread/INFO]: xCookieCraft left the game +2015-06-29 [12:51:25] [Server thread/INFO]: xCookieCraft[/189.159.230.113:63121] logged out due to client disconnect +2015-06-29 [12:51:27] [Server thread/INFO]: :( +2015-06-29 [12:51:28] [Server thread/INFO]: xAlec[/108.35.168.93:38337] logged in with entity id 594 at (world, 155.767, 4, 131.8506) +2015-06-29 [12:51:30] [Server thread/INFO]: or turn up ur brightness +2015-06-29 [12:51:31] [Server thread/INFO]: xAlec joined the game +2015-06-29 [12:51:31] [Server thread/INFO]: :( +2015-06-29 [12:51:33] [Server thread/INFO]: lol lag +2015-06-29 [12:51:33] [Server thread/INFO]: Whvian left the game +2015-06-29 [12:51:33] [Server thread/INFO]: Whvian[/108.6.213.211:53175] logged out due to timeout +2015-06-29 [12:51:37] [Server thread/NOTICE]: Player data not found for "jhurts", creating new profile +2015-06-29 [12:51:37] [Server thread/INFO]: Jhurts[/24.56.188.234:60747] logged in with entity id 600 at (world, 128, 4, 128) +2015-06-29 [12:51:38] [Server thread/INFO]: jRayx left the game +2015-06-29 [12:51:38] [Server thread/INFO]: jRayx[/70.193.215.134:6380] logged out due to timeout +2015-06-29 [12:51:40] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [12:51:40] [Server thread/INFO]: Jhurts joined the game +2015-06-29 [12:51:46] [Server thread/INFO]: Ton[/99.117.132.36:55248] logged in with entity id 607 at (world, 145.4713, 65, 127.2844) +2015-06-29 [12:51:50] [Server thread/INFO]: Ton joined the game +2015-06-29 [12:51:57] [Server thread/INFO]: Crumplex[/73.5.179.208:54039] logged in with entity id 619 at (world, 190.8105, 69, 120.7818) +2015-06-29 [12:51:58] [Server thread/INFO]: MilesPerSecond left the game +2015-06-29 [12:51:58] [Server thread/INFO]: MilesPerSecond[/67.171.182.232:52679] logged out due to client disconnect +2015-06-29 [12:52:00] [Server thread/INFO]: Crumplex joined the game +2015-06-29 [12:52:01] [Server thread/INFO]: brb, getting my skin +2015-06-29 [12:52:03] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [12:52:03] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:59228] logged out due to timeout +2015-06-29 [12:52:05] [Server thread/INFO]: Clanz?!?!? +2015-06-29 [12:52:06] [Server thread/INFO]: RacgiMan left the game +2015-06-29 [12:52:06] [Server thread/INFO]: RacgiMan[/70.113.10.54:63166] logged out due to client disconnect +2015-06-29 [12:52:15] [Server thread/INFO]: maukamauka left the game +2015-06-29 [12:52:15] [Server thread/INFO]: maukamauka[/52.6.86.115:61853] logged out due to timeout +2015-06-29 [12:52:19] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [12:52:22] [Server thread/INFO]: Pr0pH3T123 left the game +2015-06-29 [12:52:22] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:49230] logged out due to timeout +2015-06-29 [12:52:33] [Server thread/WARNING]: dennis moved wrongly! +2015-06-29 [12:52:33] [Server thread/WARNING]: dennis moved wrongly! +2015-06-29 [12:52:33] [Server thread/WARNING]: biohazard_ moved wrongly! +2015-06-29 [12:52:37] [Server thread/INFO]: i made a thread about dis +2015-06-29 [12:52:37] [Server thread/WARNING]: SophiaRose moved wrongly! +2015-06-29 [12:52:37] [Server thread/INFO]: MilesPerSecond[/67.171.182.232:50180] logged in with entity id 694 at (world, 154.7505, 8, 136.4157) +2015-06-29 [12:52:41] [Server thread/INFO]: MilesPerSecond joined the game +2015-06-29 [12:52:41] [Server thread/INFO]: Garretteleven died +2015-06-29 [12:52:42] [Server thread/INFO]: Best serve ever: us.mineplex.com +2015-06-29 [12:52:43] [Server thread/WARNING]: biohazard_ moved wrongly! +2015-06-29 [12:52:47] [Server thread/INFO]: Rosa? +2015-06-29 [12:52:48] [Server thread/INFO]: i saw your thread +2015-06-29 [12:52:49] [Server thread/INFO]: stay @ spawn +2015-06-29 [12:52:50] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:46007] logged in with entity id 720 at (world, 125.5673, 4, 44.1779) +2015-06-29 [12:52:53] [Server thread/INFO]: ye +2015-06-29 [12:52:53] [Server thread/INFO]: Pr0pH3T123 joined the game +2015-06-29 [12:53:01] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [12:53:05] [Server thread/INFO]: Garretteleven died +2015-06-29 [12:53:06] [Server thread/INFO]: how many potatoes dp you guya have +2015-06-29 [12:53:08] [Server thread/INFO]: Garretteleven left the game +2015-06-29 [12:53:08] [Server thread/INFO]: Garretteleven[/108.81.1.177:51964] logged out due to client disconnect +2015-06-29 [12:53:08] [Server thread/INFO]: i have 7 +2015-06-29 [12:53:10] [Server thread/WARNING]: MilesPerSecond moved wrongly! +2015-06-29 [12:53:11] [Server thread/INFO]: Garretteleven[/108.81.1.177:50966] logged in with entity id 747 at (world, 132.0892, 5, 112.2046) +2015-06-29 [12:53:14] [Server thread/INFO]: Garretteleven joined the game +2015-06-29 [12:53:18] [Server thread/INFO]: hey jhurts +2015-06-29 [12:53:23] [Server thread/INFO]: 0 +2015-06-29 [12:53:30] [Server thread/INFO]: hi 15IBNs +2015-06-29 [12:53:34] [Server thread/INFO]: Just waitint for the tryhards wanting to become staff on here thinking its real +2015-06-29 [12:53:36] [Server thread/INFO]: Rosa <3 +2015-06-29 [12:53:38] [Server thread/INFO]: is beta? +2015-06-29 [12:53:41] [Server thread/INFO]: Whvian[/108.6.213.211:50499] logged in with entity id 798 at (world, 157.6974, 12, 119.3395) +2015-06-29 [12:53:44] [Server thread/INFO]: Whvian joined the game +2015-06-29 [12:53:44] [Server thread/INFO]: 15Ibans +2015-06-29 [12:53:50] [Server thread/INFO]: jhurtsbae <3 +2015-06-29 [12:53:50] [Server thread/INFO]: is this beta clans? +2015-06-29 [12:53:51] [Server thread/INFO]: Logged this is fake +2015-06-29 [12:53:52] [Server thread/INFO]: boarding +2015-06-29 [12:53:52] [Server thread/INFO]: Guys this is obv beta clans +2015-06-29 [12:53:55] [Server thread/INFO]: lol im back +2015-06-29 [12:54:05] [Server thread/INFO]: bored +2015-06-29 [12:54:09] [Server thread/INFO]: Pr0pH3T123 left the game +2015-06-29 [12:54:09] [Server thread/INFO]: Pr0pH3T123[/93.141.53.84:46007] logged out due to client disconnect +2015-06-29 [12:54:09] [Server thread/INFO]: Caleb left the game +2015-06-29 [12:54:09] [Server thread/INFO]: Caleb[/70.114.250.112:52558] logged out due to client disconnect +2015-06-29 [12:54:11] [Server thread/INFO]: wait.... is this beta server? +2015-06-29 [12:54:14] [Server thread/WARNING]: biohazard_ moved wrongly! +2015-06-29 [12:54:15] [Server thread/INFO]: hi charcoal xD +2015-06-29 [12:54:17] [Server thread/INFO]: no +2015-06-29 [12:54:17] [Server thread/INFO]: i need my skin +2015-06-29 [12:54:17] [Server thread/INFO]: ooo fell from a high place +2015-06-29 [12:54:20] [Server thread/WARNING]: biohazard_ moved wrongly! +2015-06-29 [12:54:20] [Server thread/INFO]: Crumplex left the game +2015-06-29 [12:54:20] [Server thread/INFO]: Crumplex[/73.5.179.208:54039] logged out due to timeout +2015-06-29 [12:54:21] [Server thread/INFO]: hi +2015-06-29 [12:54:28] [Server thread/INFO]: have my dirt +2015-06-29 [12:54:30] [Server thread/INFO]: staff +2015-06-29 [12:54:32] [Server thread/INFO]: i look like a randie rosa ;-; +2015-06-29 [12:54:32] [Server thread/INFO]: RacgiMan[/70.113.10.54:58650] logged in with entity id 871 at (world, 146.2521, 4, 128.2282) +2015-06-29 [12:54:35] [Server thread/INFO]: Lpnt left the game +2015-06-29 [12:54:35] [Server thread/INFO]: Lpnt[/24.165.82.15:56570] logged out due to timeout +2015-06-29 [12:54:35] [Server thread/INFO]: RacgiMan joined the game +2015-06-29 [12:54:36] [Server thread/INFO]: ooo left the game +2015-06-29 [12:54:36] [Server thread/INFO]: ooo[/172.56.13.252:41542] logged out due to client disconnect +2015-06-29 [12:54:39] [Server thread/INFO]: is this legit... +2015-06-29 [12:54:39] [Server thread/INFO]: Anthony2202[/172.88.60.19:55808] logged in with entity id 884 at (world, 156.6965, 3, 112.457) +2015-06-29 [12:54:42] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [12:54:45] [Server thread/INFO]: id say yea +2015-06-29 [12:54:56] [Server thread/INFO]: 100% Legit :D +2015-06-29 [12:54:57] [Server thread/INFO]: RedXTech[/68.146.88.146:43939] logged in with entity id 907 at (world, 136.3597, 4, 127.427) +2015-06-29 [12:54:58] [Server thread/NOTICE]: Player data not found for "trutony", creating new profile +2015-06-29 [12:54:58] [Server thread/INFO]: TruTony[/70.114.250.112:64120] logged in with entity id 911 at (world, 128, 4, 128) +2015-06-29 [12:55:00] [Server thread/INFO]: RedXTech joined the game +2015-06-29 [12:55:01] [Server thread/INFO]: TruTony joined the game +2015-06-29 [12:55:01] [Server thread/INFO]: biohazard_ left the game +2015-06-29 [12:55:01] [Server thread/INFO]: biohazard_[/76.16.212.5:59355] logged out due to client disconnect +2015-06-29 [12:55:07] [Server thread/NOTICE]: Player data not found for "aleeex", creating new profile +2015-06-29 [12:55:07] [Server thread/INFO]: Aleeex[/75.166.54.109:49358] logged in with entity id 922 at (world, 128, 4, 128) +2015-06-29 [12:55:10] [Server thread/WARNING]: Artix moved wrongly! +2015-06-29 [12:55:10] [Server thread/INFO]: Aleeex joined the game +2015-06-29 [12:55:11] [Server thread/INFO]: StarRocket fell from a high place +2015-06-29 [12:55:11] [Server thread/INFO]: some impersonators here and there +2015-06-29 [12:55:13] [Server thread/INFO]: Whats this place for +2015-06-29 [12:55:15] [Server thread/WARNING]: Anonie moved wrongly! +2015-06-29 [12:55:16] [Server thread/INFO]: TruTony left the game +2015-06-29 [12:55:16] [Server thread/INFO]: TruTony[/70.114.250.112:64120] logged out due to client disconnect +2015-06-29 [12:55:22] [Server thread/INFO]: but overall +2015-06-29 [12:55:31] [Server thread/NOTICE]: Player data not found for "wolfheart723", creating new profile +2015-06-29 [12:55:31] [Server thread/INFO]: Wolfheart723[/70.114.250.112:60264] logged in with entity id 954 at (world, 128, 4, 128) +2015-06-29 [12:55:34] [Server thread/INFO]: Wolfheart723 joined the game +2015-06-29 [12:55:36] [Server thread/INFO]: RosaEpicBeauty fell from a high place +2015-06-29 [12:55:47] [Server thread/INFO]: Alex +2015-06-29 [12:55:49] [Server thread/INFO]: rosa ;-; +2015-06-29 [12:55:49] [Server thread/INFO]: lagg +2015-06-29 [12:55:52] [Server thread/NOTICE]: Player data not found for "byte_", creating new profile +2015-06-29 [12:55:52] [Server thread/INFO]: Byte_[/73.150.143.17:57930] logged in with entity id 980 at (world, 128, 4, 128) +2015-06-29 [12:55:55] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [12:55:56] [Server thread/INFO]: pikachomp[/108.20.187.165:52696] logged in with entity id 985 at (world, 156.991, 30, 119.7859) +2015-06-29 [12:55:59] [Server thread/INFO]: pikachomp joined the game +2015-06-29 [12:55:59] [Server thread/INFO]: hi +2015-06-29 [12:56:02] [Server thread/INFO]: ayy byte +2015-06-29 [12:56:04] [Server thread/INFO]: ello +2015-06-29 [12:56:08] [Server thread/INFO]: pvp shkukd s +2015-06-29 [12:56:11] [Server thread/INFO]: This is beta clans +2015-06-29 [12:56:11] [Server thread/INFO]: byte +2015-06-29 [12:56:11] [Server thread/INFO]: brb +2015-06-29 [12:56:14] [Server thread/INFO]: pvp shoukd +2015-06-29 [12:56:17] [Server thread/INFO]: totes +2015-06-29 [12:56:17] [Server thread/INFO]: byte pls +2015-06-29 [12:56:18] [Server thread/INFO]: saw your post on the thread +2015-06-29 [12:56:27] [Server thread/INFO]: pvp should enabled +2015-06-29 [12:56:28] [Server thread/INFO]: clans alpha mobile +2015-06-29 [12:56:28] [Server thread/INFO]: Charcoal_Inc fell from a high place +2015-06-29 [12:56:30] [Server thread/INFO]: RosaEpicBeauty left the game +2015-06-29 [12:56:30] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:61811] logged out due to timeout +2015-06-29 [12:56:36] [Server thread/INFO]: maukamauka[/52.6.86.115:51442] logged in with entity id 1042 at (world, 157.044, 15, 134.7956) +2015-06-29 [12:56:36] [Server thread/INFO]: is this real...? +2015-06-29 [12:56:37] [Server thread/INFO]: StarRocket left the game +2015-06-29 [12:56:37] [Server thread/INFO]: StarRocket[/70.56.27.182:53360] logged out due to client disconnect +2015-06-29 [12:56:38] [Server thread/INFO]: Mojang should make an authentication system on MCPE so there are no impersonators that come on here +2015-06-29 [12:56:39] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [12:56:41] [Server thread/INFO]: i think so +2015-06-29 [12:56:45] [Server thread/INFO]: some impersonators +2015-06-29 [12:56:46] [Server thread/INFO]: nah i dint think so +2015-06-29 [12:56:49] [Server thread/INFO]: 100% real +2015-06-29 [12:56:52] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [12:56:53] [Server thread/INFO]: but seems pretty legit +2015-06-29 [12:57:06] [Server thread/INFO]: "lrgit" +2015-06-29 [12:57:08] [Server thread/WARNING]: SophiaRose moved wrongly! +2015-06-29 [12:57:13] [Server thread/INFO]: hello milespersecons +2015-06-29 [12:57:15] [Server thread/INFO]: shh mobile keyboards +2015-06-29 [12:57:16] [Server thread/INFO]: second +2015-06-29 [12:57:17] [Server thread/INFO]: I wish you had ro log in with a mojang account +2015-06-29 [12:57:20] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [12:57:23] [Server thread/INFO]: hi bsward +2015-06-29 [12:57:26] [Server thread/INFO]: it it's a friggin number ip lmao +2015-06-29 [12:57:44] [Server thread/INFO]: chubbipenguin11 left the game +2015-06-29 [12:57:44] [Server thread/INFO]: chubbipenguin11[/65.113.104.96:4257] logged out due to timeout +2015-06-29 [12:57:45] [Server thread/INFO]: does pe even have letter ips? +2015-06-29 [12:57:52] [Server thread/INFO]: Byte_ are you a mineplex mod? +2015-06-29 [12:57:53] [Server thread/INFO]: Yes Wolf +2015-06-29 [12:57:53] [Server thread/INFO]: ye +2015-06-29 [12:57:54] [Server thread/INFO]: dont think it supports the +2015-06-29 [12:57:55] [Server thread/INFO]: Yeah +2015-06-29 [12:57:55] [Server thread/INFO]: clans.mineplex.com will redirect here. ;) +2015-06-29 [12:57:57] [Server thread/INFO]: themi +2015-06-29 [12:58:02] [Server thread/INFO]: RedXTech left the game +2015-06-29 [12:58:02] [Server thread/INFO]: RedXTech[/68.146.88.146:43939] logged out due to timeout +2015-06-29 [12:58:03] [Server thread/INFO]: agh. +2015-06-29 [12:58:12] [Server thread/INFO]: bswardx fell from a high place +2015-06-29 [12:58:13] [Server thread/INFO]: the mobile keyboard struggles +2015-06-29 [12:58:15] [Server thread/INFO]: Wolfheart723 left the game +2015-06-29 [12:58:15] [Server thread/INFO]: Wolfheart723[/70.114.250.112:60264] logged out due to timeout +2015-06-29 [12:58:20] [Server thread/INFO]: This is what clans will be like guys +2015-06-29 [12:58:20] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:50684] logged in with entity id 1313 at (world, 140.0275, 4, 121.9415) +2015-06-29 [12:58:23] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [12:58:35] [Server thread/INFO]: a flat sorld.... +2015-06-29 [12:58:37] [Server thread/INFO]: holy crap this place is trashed +2015-06-29 [12:58:40] [Server thread/INFO]: totes +2015-06-29 [12:58:42] [Server thread/INFO]: LoggedIn left the game +2015-06-29 [12:58:42] [Server thread/INFO]: LoggedIn[/12.238.61.12:63518] logged out due to timeout +2015-06-29 [12:58:43] [Server thread/INFO]: this is clans +2015-06-29 [12:58:46] [Server thread/INFO]: SophiaRose left the game +2015-06-29 [12:58:46] [Server thread/INFO]: SophiaRose[/104.246.120.48:56872] logged out due to client disconnect +2015-06-29 [12:58:48] [Server thread/INFO]: itssss clanz +2015-06-29 [12:58:48] [Server thread/INFO]: yep +2015-06-29 [12:58:48] [Server thread/INFO]: MilesPerSecond fell from a high place +2015-06-29 [12:58:50] [Server thread/INFO]: we a +2015-06-29 [12:58:53] [Server thread/INFO]: Aleeex left the game +2015-06-29 [12:58:53] [Server thread/INFO]: Aleeex[/75.166.54.109:49358] logged out due to timeout +2015-06-29 [12:58:56] [Server thread/INFO]: waited* +2015-06-29 [12:59:00] [Server thread/INFO]: "clans" +2015-06-29 [12:59:03] [Server thread/INFO]: Snowballcps[/98.178.137.183:49372] logged in with entity id 1374 at (world, 145.6646, 65, 113.8365) +2015-06-29 [12:59:05] [Server thread/INFO]: for this +2015-06-29 [12:59:06] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [12:59:06] [Server thread/WARNING]: MilesPerSecond moved wrongly! +2015-06-29 [12:59:08] [Server thread/WARNING]: MilesPerSecond moved wrongly! +2015-06-29 [12:59:10] [Server thread/WARNING]: Byte_ moved wrongly! +2015-06-29 [12:59:13] [Server thread/INFO]: hi snow +2015-06-29 [12:59:14] [Server thread/WARNING]: Whvian moved wrongly! +2015-06-29 [12:59:19] [Server thread/INFO]: ayy (maybe real) snowball +2015-06-29 [12:59:19] [Server thread/INFO]: this is clanz +2015-06-29 [12:59:22] [Server thread/INFO]: ugli spawb +2015-06-29 [12:59:24] [Server thread/INFO]: Orthdntst_[/98.200.179.70:40597] logged in with entity id 1425 at (world, 128, 62, 128) +2015-06-29 [12:59:27] [Server thread/INFO]: Orthdntst_ joined the game +2015-06-29 [12:59:31] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:65264] logged in with entity id 1439 at (world, 1568.3464, 70, -26.7915) +2015-06-29 [12:59:35] [Server thread/INFO]: ugly spelling +2015-06-29 [12:59:35] [Server thread/INFO]: ya +2015-06-29 [12:59:36] [Server thread/INFO]: New m0 lobby here +2015-06-29 [12:59:37] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [12:59:40] [Server thread/NOTICE]: Player data not found for "geckogamingyt", creating new profile +2015-06-29 [12:59:40] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:57934] logged in with entity id 1454 at (world, 128, 4, 128) +2015-06-29 [12:59:43] [Server thread/INFO]: PenguinHi5[/67.2.213.189:63938] logged in with entity id 1458 at (world, 128, 76, 128) +2015-06-29 [12:59:44] [Server thread/INFO]: GeckoGamingYT joined the game +2015-06-29 [12:59:45] [Server thread/WARNING]: Snowballcps moved wrongly! +2015-06-29 [12:59:45] [Server thread/INFO]: yoyo +2015-06-29 [12:59:46] [Server thread/INFO]: mlg new lobby +2015-06-29 [12:59:46] [Server thread/INFO]: PenguinHi5 joined the game +2015-06-29 [12:59:47] [Server thread/INFO]: hi Snowballcps! +2015-06-29 [12:59:51] [Server thread/INFO]: hi +2015-06-29 [12:59:56] [Server thread/INFO]: Snowballcps fell from a high place +2015-06-29 [12:59:57] [Server thread/INFO]: Jhurts fell from a high place +2015-06-29 [12:59:57] [Server thread/WARNING]: PenguinHi5 moved wrongly! +2015-06-29 [12:59:58] [Server thread/INFO]: LoggedIn[/12.238.61.12:63309] logged in with entity id 1470 at (world, 174.4805, 6, 105.798) +2015-06-29 [12:59:59] [Server thread/INFO]: Snowballcps left the game +2015-06-29 [12:59:59] [Server thread/INFO]: Snowballcps[/98.178.137.183:49372] logged out due to client disconnect +2015-06-29 [13:00:00] [Server thread/INFO]: tp +2015-06-29 [13:00:00] [Server thread/INFO]: you eepilied to one of my reporte +2015-06-29 [13:00:00] [Server thread/INFO]: aww +2015-06-29 [13:00:01] [Server thread/INFO]: LoggedIn joined the game +2015-06-29 [13:00:02] [Server thread/INFO]: Snowballcps[/98.178.137.183:63750] logged in with entity id 1475 at (world, 139.2007, 6, 111.0737) +2015-06-29 [13:00:04] [Server thread/INFO]: what are we doing +2015-06-29 [13:00:05] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [13:00:06] [Server thread/INFO]: CodeName left the game +2015-06-29 [13:00:06] [Server thread/INFO]: CodeName[/24.45.209.193:56037] logged out due to client disconnect +2015-06-29 [13:00:09] [Server thread/WARNING]: PenguinHi5 moved wrongly! +2015-06-29 [13:00:09] [Server thread/INFO]: CodeName[/24.45.209.193:58882] logged in with entity id 1485 at (world, 145.7709, 4, 126.0284) +2015-06-29 [13:00:11] [Server thread/INFO]: Orthdntst_ left the game +2015-06-29 [13:00:11] [Server thread/INFO]: Orthdntst_[/98.200.179.70:40597] logged out due to client disconnect +2015-06-29 [13:00:11] [Server thread/INFO]: Snowball does he still need us +2015-06-29 [13:00:12] [Server thread/INFO]: CodeName joined the game +2015-06-29 [13:00:18] [Server thread/INFO]: imma stay up until this goes down +2015-06-29 [13:00:19] [Server thread/INFO]: lel +2015-06-29 [13:00:20] [Server thread/INFO]: BaconBeanbag died +2015-06-29 [13:00:21] [Server thread/INFO]: FakeSven[/184.163.201.200:49750] logged in with entity id 1509 at (world, 128, 4, 128) +2015-06-29 [13:00:22] [Server thread/INFO]: Hai Code +2015-06-29 [13:00:24] [Server thread/WARNING]: Ton moved wrongly! +2015-06-29 [13:00:24] [Server thread/INFO]: you use the Alex template? +2015-06-29 [13:00:24] [Server thread/INFO]: chissling left the game +2015-06-29 [13:00:24] [Server thread/INFO]: chissling[/1.152.97.61:57386] logged out due to client disconnect +2015-06-29 [13:00:24] [Server thread/INFO]: Dont know. +2015-06-29 [13:00:24] [Server thread/INFO]: FakeSven joined the game +2015-06-29 [13:00:31] [Server thread/NOTICE]: Player data not found for "procrastinate", creating new profile +2015-06-29 [13:00:31] [Server thread/INFO]: Procrastinate[/98.200.179.70:46316] logged in with entity id 1533 at (world, 128, 4, 128) +2015-06-29 [13:00:32] [Server thread/INFO]: k +2015-06-29 [13:00:35] [Server thread/INFO]: Procrastinate joined the game +2015-06-29 [13:00:35] [Server thread/INFO]: who, me? +2015-06-29 [13:00:37] [Server thread/WARNING]: MilesPerSecond moved wrongly! +2015-06-29 [13:00:37] [Server thread/WARNING]: MilesPerSecond moved wrongly! +2015-06-29 [13:00:41] [Server thread/INFO]: lol fake svn +2015-06-29 [13:00:42] [Server thread/INFO]: MilesPerSecond left the game +2015-06-29 [13:00:42] [Server thread/INFO]: MilesPerSecond[/67.171.182.232:50180] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [13:00:43] [Server thread/INFO]: bye world +2015-06-29 [13:00:44] [Server thread/INFO]: PenguinHi5 left the game +2015-06-29 [13:00:44] [Server thread/INFO]: PenguinHi5[/67.2.213.189:63938] logged out due to timeout +2015-06-29 [13:00:44] [Server thread/WARNING]: Jhurts moved wrongly! +2015-06-29 [13:00:46] [Server thread/INFO]: anonie +2015-06-29 [13:00:47] [Server thread/INFO]: Garretteleven fell from a high place +2015-06-29 [13:00:48] [Server thread/INFO]: s owball you replied to on le of my report +2015-06-29 [13:00:53] [Server thread/INFO]: whar +2015-06-29 [13:00:53] [Server thread/INFO]: Jhurts left the game +2015-06-29 [13:00:53] [Server thread/INFO]: Jhurts[/24.56.188.234:60747] logged out due to client disconnect +2015-06-29 [13:00:57] [Server thread/WARNING]: Garretteleven moved wrongly! +2015-06-29 [13:00:58] [Server thread/INFO]: kool +2015-06-29 [13:01:03] [Server thread/INFO]: i can make sticks +2015-06-29 [13:01:05] [Server thread/INFO]: gg +2015-06-29 [13:01:06] [Server thread/NOTICE]: Player data not found for "chiss", creating new profile +2015-06-29 [13:01:06] [Server thread/INFO]: Chiss[/24.56.188.234:60848] logged in with entity id 1633 at (world, 128, 4, 128) +2015-06-29 [13:01:09] [Server thread/INFO]: Chiss joined the game +2015-06-29 [13:01:14] [Server thread/INFO]: fakw +2015-06-29 [13:01:16] [Server thread/INFO]: this feels wrong +2015-06-29 [13:01:17] [Server thread/INFO]: maukamauka left the game +2015-06-29 [13:01:17] [Server thread/INFO]: maukamauka[/52.6.86.115:51442] logged out due to client disconnect +2015-06-29 [13:01:18] [Server thread/INFO]: chiss.... +2015-06-29 [13:01:21] [Server thread/INFO]: meow +2015-06-29 [13:01:22] [Server thread/INFO]: fake chiss +2015-06-29 [13:01:23] [Server thread/INFO]: fake +2015-06-29 [13:01:26] [Server thread/INFO]: l +2015-06-29 [13:01:28] [Server thread/INFO]: lel +2015-06-29 [13:01:29] [Server thread/INFO]: fake +2015-06-29 [13:01:29] [Server thread/INFO]: fake +2015-06-29 [13:01:31] [Server thread/INFO]: Chiss left the game +2015-06-29 [13:01:31] [Server thread/INFO]: Chiss[/24.56.188.234:60848] logged out due to client disconnect +2015-06-29 [13:01:32] [Server thread/INFO]: Garretteleven left the game +2015-06-29 [13:01:32] [Server thread/INFO]: Garretteleven[/108.81.1.177:50966] logged out due to client disconnect +2015-06-29 [13:01:35] [Server thread/INFO]: Snowballcps left the game +2015-06-29 [13:01:35] [Server thread/INFO]: Snowballcps[/98.178.137.183:63750] logged out due to client disconnect +2015-06-29 [13:01:37] [Server thread/INFO]: lol +2015-06-29 [13:01:40] [Server thread/INFO]: im totally the real sven huehue +2015-06-29 [13:01:41] [Server thread/WARNING]: Anonie moved wrongly! +2015-06-29 [13:01:48] [Server thread/INFO]: Jhurts[/24.56.188.234:57877] logged in with entity id 1733 at (world, 145.3263, 6, 115.1132) +2015-06-29 [13:01:52] [Server thread/INFO]: Jhurts joined the game +2015-06-29 [13:01:54] [Server thread/INFO]: gr8 +2015-06-29 [13:02:01] [Server thread/INFO]: CodeName left the game +2015-06-29 [13:02:01] [Server thread/INFO]: CodeName[/24.45.209.193:58882] logged out due to timeout +2015-06-29 [13:02:01] [Server thread/INFO]: someone impeesonated me +2015-06-29 [13:02:03] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:40401] logged in with entity id 1783 at (world, 128, 62, 128) +2015-06-29 [13:02:04] [Server thread/WARNING]: BaconBeanbag moved wrongly! +2015-06-29 [13:02:06] [Server thread/INFO]: EvilWarriorGirl joined the game +2015-06-29 [13:02:06] [Server thread/INFO]: BaconBeanbag fell out of the world +2015-06-29 [13:02:09] [Server thread/INFO]: NinjaGuy_[/108.41.5.80:48928] logged out due to Outdated client! +2015-06-29 [13:02:10] [Server thread/INFO]: it was weird. +2015-06-29 [13:02:11] [Server thread/INFO]: really? +2015-06-29 [13:02:14] [Server thread/INFO]: Whvian fell from a high place +2015-06-29 [13:02:15] [Server thread/INFO]: Wait, what are we here for? +2015-06-29 [13:02:17] [Server thread/WARNING]: GeckoGamingYT moved wrongly! +2015-06-29 [13:02:18] [Server thread/INFO]: yeah, dunno why me +2015-06-29 [13:02:19] [Server thread/INFO]: Well... XD +2015-06-29 [13:02:35] [Server thread/INFO]: to test the capability of it +2015-06-29 [13:02:46] [Server thread/INFO]: Ohh +2015-06-29 [13:02:47] [Server thread/INFO]: dennis fell from a high place +2015-06-29 [13:02:49] [Server thread/INFO]: A pocket Mineplex would be amazing +2015-06-29 [13:02:54] [Server thread/INFO]: Ton left the game +2015-06-29 [13:02:54] [Server thread/INFO]: Ton[/99.117.132.36:55248] logged out due to client disconnect +2015-06-29 [13:02:57] [Server thread/INFO]: sadly most gmaez wouldng work +2015-06-29 [13:03:04] [Server thread/INFO]: #MineplexPE +2015-06-29 [13:03:04] [Server thread/INFO]: games* wouldnt8 +2015-06-29 [13:03:07] [Server thread/INFO]: forgot how hor i look as a steve +2015-06-29 [13:03:12] [Server thread/INFO]: set to day +2015-06-29 [13:03:13] [Server thread/INFO]: hot +2015-06-29 [13:03:15] [Server thread/INFO]: clans pe +2015-06-29 [13:03:19] [Server thread/INFO]: Id like sg though +2015-06-29 [13:03:20] [Server thread/INFO]: dragon escape would work +2015-06-29 [13:03:31] [Server thread/INFO]: guys +2015-06-29 [13:03:33] [Server thread/INFO]: Still... n the bus playing MP? Amazing +2015-06-29 [13:03:35] [Server thread/INFO]: bswardx left the game +2015-06-29 [13:03:35] [Server thread/INFO]: bswardx[/220.245.130.194:57037] logged out due to timeout +2015-06-29 [13:03:38] [Server thread/INFO]: ah I miss a keyboard already +2015-06-29 [13:03:41] [Server thread/INFO]: artic says it's it's a test +2015-06-29 [13:03:42] [Server thread/INFO]: LoggedIn left the game +2015-06-29 [13:03:42] [Server thread/INFO]: LoggedIn[/12.238.61.12:63309] logged out due to timeout +2015-06-29 [13:03:47] [Server thread/INFO]: it's legit... +2015-06-29 [13:03:52] [Server thread/INFO]: mhm +2015-06-29 [13:03:57] [Server thread/INFO]: wth +2015-06-29 [13:03:59] [Server thread/INFO]: legit is gud stuff +2015-06-29 [13:03:59] [Server thread/INFO]: this +2015-06-29 [13:04:04] [Server thread/INFO]: mcpe +2015-06-29 [13:04:06] [Server thread/INFO]: Procrastinate left the game +2015-06-29 [13:04:06] [Server thread/INFO]: Procrastinate[/98.200.179.70:46316] logged out due to timeout +2015-06-29 [13:04:11] [Server thread/INFO]: MPPE +2015-06-29 [13:04:16] [Server thread/INFO]: really bad place to put a s3rerver +2015-06-29 [13:04:17] [Server thread/INFO]: inb4 MCPE hax +2015-06-29 [13:04:27] [Server thread/INFO]: pikachomp fell from a high place +2015-06-29 [13:04:29] [Server thread/INFO]: o +2015-06-29 [13:04:35] [Server thread/INFO]: hmmmm this is weird i hate pe +2015-06-29 [13:04:35] [Server thread/INFO]: they are releasing aus mineplex soon +2015-06-29 [13:04:36] [Server thread/WARNING]: Anonie moved wrongly! +2015-06-29 [13:04:43] [Server thread/INFO]: eh its a test, if they expand on this (accounts, etc) +2015-06-29 [13:04:46] [Server thread/NOTICE]: Player data not found for "antlo", creating new profile +2015-06-29 [13:04:46] [Server thread/INFO]: Antlo[/184.39.3.3:65218] logged in with entity id 1972 at (world, 128, 4, 128) +2015-06-29 [13:04:49] [Server thread/INFO]: someone ban hot_Tati just in case +2015-06-29 [13:04:49] [Server thread/INFO]: Antlo joined the game +2015-06-29 [13:04:54] [Server thread/INFO]: LOL +2015-06-29 [13:04:58] [Server thread/INFO]: Hai Antlo +2015-06-29 [13:05:05] [Server thread/INFO]: ANTLO +2015-06-29 [13:05:05] [Server thread/INFO]: Too soon xD +2015-06-29 [13:05:07] [Server thread/INFO]: dont bring that up... +2015-06-29 [13:05:07] [Server thread/INFO]: I hate controls +2015-06-29 [13:05:11] [Server thread/INFO]: how to type +2015-06-29 [13:05:15] [Server thread/INFO]: 101 +2015-06-29 [13:05:17] [Server thread/INFO]: nvm +2015-06-29 [13:05:17] [Server thread/INFO]: Fake Antlo? .-. +2015-06-29 [13:05:23] [Server thread/INFO]: rip this keyboard is hard +2015-06-29 [13:05:31] [Server thread/INFO]: no im real i just bought this +2015-06-29 [13:05:34] [Server thread/INFO]: ughhh wheres clanz on da real mp +2015-06-29 [13:05:37] [Server thread/INFO]: Oh +2015-06-29 [13:05:41] [Server thread/INFO]: FakeSven left the game +2015-06-29 [13:05:41] [Server thread/INFO]: FakeSven[/184.163.201.200:49750] logged out due to timeout +2015-06-29 [13:05:43] [Server thread/INFO]: antlo who is ur bff? besides me +2015-06-29 [13:05:45] [Server thread/INFO]: this entire version is hard +2015-06-29 [13:05:48] [Server thread/INFO]: clanz pe +2015-06-29 [13:05:49] [Server thread/WARNING]: dennis moved wrongly! +2015-06-29 [13:05:51] [Server thread/INFO]: I bought this before normal mc +2015-06-29 [13:05:52] [Server thread/INFO]: l +2015-06-29 [13:05:55] [Server thread/INFO]: lel +2015-06-29 [13:05:58] [Server thread/INFO]: Same +2015-06-29 [13:05:59] [Server thread/INFO]: same +2015-06-29 [13:06:04] [Server thread/INFO]: Bought it when it came out +2015-06-29 [13:06:04] [Server thread/INFO]: morgan goldie peter scary yaamine +2015-06-29 [13:06:10] [Server thread/INFO]: same +2015-06-29 [13:06:13] [Server thread/INFO]: Charcoal_Inc fell from a high place +2015-06-29 [13:06:15] [Server thread/INFO]: Uhm +2015-06-29 [13:06:18] [Server thread/INFO]: k +2015-06-29 [13:06:21] [Server thread/INFO]: Lol +2015-06-29 [13:06:23] [Server thread/INFO]: OI got normal mc when it was free xD +2015-06-29 [13:06:27] [Server thread/INFO]: LOL +2015-06-29 [13:06:28] [Server thread/INFO]: oi +2015-06-29 [13:06:29] [Server thread/INFO]: Someone deleted the thread on it +2015-06-29 [13:06:33] [Server thread/INFO]: on forums +2015-06-29 [13:06:34] [Server thread/INFO]: nice +2015-06-29 [13:06:37] [Server thread/INFO]: warrior please dont +2015-06-29 [13:06:38] [Server thread/INFO]: wheb is it starting? +2015-06-29 [13:06:44] [Server thread/INFO]: ezpz posted wall posts so yeeee +2015-06-29 [13:06:57] [Server thread/INFO]: what is scarys nick antlo? +2015-06-29 [13:07:04] [Server thread/INFO]: Snowballcps[/98.178.137.183:52178] logged in with entity id 2153 at (world, 235.2645, 4, 101.0756) +2015-06-29 [13:07:06] [Server thread/INFO]: pc +2015-06-29 [13:07:08] [Server thread/INFO]: Snowballcps joined the game +2015-06-29 [13:07:10] [Server thread/INFO]: DaddyDean[/188.207.92.49:33251] logged in with entity id 2163 at (world, 142.5644, 29, 118.5965) +2015-06-29 [13:07:13] [Server thread/INFO]: DaddyDean joined the game +2015-06-29 [13:07:16] [Server thread/INFO]: Artix left the game +2015-06-29 [13:07:16] [Server thread/INFO]: Artix[/68.32.132.196:33226] logged out due to client disconnect +2015-06-29 [13:07:16] [Server thread/NOTICE]: Player data not found for "ifantasii", creating new profile +2015-06-29 [13:07:16] [Server thread/INFO]: iFantasii[/68.80.18.137:61625] logged in with entity id 2174 at (world, 128, 4, 128) +2015-06-29 [13:07:17] [Server thread/INFO]: ay dea +2015-06-29 [13:07:18] [Server thread/INFO]: im still confused what is happening +2015-06-29 [13:07:19] [Server thread/INFO]: iFantasii joined the game +2015-06-29 [13:07:20] [Server thread/INFO]: deAn* +2015-06-29 [13:07:23] [Server thread/INFO]: mikelikesmuffins left the game +2015-06-29 [13:07:23] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:54689] logged out due to client disconnect +2015-06-29 [13:07:24] [Server thread/INFO]: k its u mr mcdonalds owner +2015-06-29 [13:07:24] [Server thread/INFO]: Crumplex[/73.5.179.208:52041] logged in with entity id 2185 at (world, 144.6664, 4, 123.5445) +2015-06-29 [13:07:28] [Server thread/INFO]: Crumplex joined the game +2015-06-29 [13:07:28] [Server thread/INFO]: Made a house.. +2015-06-29 [13:07:36] [Server thread/INFO]: ayyylmao +2015-06-29 [13:07:37] [Server thread/INFO]: new ip? +2015-06-29 [13:07:43] [Server thread/INFO]: bootiful ;-; +2015-06-29 [13:07:46] [Server thread/INFO]: found a shovel +2015-06-29 [13:07:47] [Server thread/INFO]: fc +2015-06-29 [13:07:49] [Server thread/INFO]: Antlo left the game +2015-06-29 [13:07:49] [Server thread/INFO]: Antlo[/184.39.3.3:65218] logged out due to client disconnect +2015-06-29 [13:07:50] [Server thread/INFO]: gg* +2015-06-29 [13:07:52] [Server thread/INFO]: Personally don't like the idea +2015-06-29 [13:07:55] [Server thread/INFO]: magicjuju[/166.175.63.79:19440] logged in with entity id 2209 at (world, 80.7087, 73.0192, 360.8464) +2015-06-29 [13:08:00] [Server thread/INFO]: magicjuju joined the game +2015-06-29 [13:08:05] [Server thread/INFO]: i think it xould work if mojang expands on pe +2015-06-29 [13:08:05] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:08:05] [Server thread/INFO]: Anthony2202[/172.88.60.19:55808] logged out due to timeout +2015-06-29 [13:08:07] [Server thread/INFO]: persknally make a better server +2015-06-29 [13:08:13] [Server thread/INFO]: mineplex pe will crash and burn +2015-06-29 [13:08:21] [Server thread/INFO]: until then, its not goonna wokr +2015-06-29 [13:08:27] [Server thread/INFO]: Anthony2202[/172.88.60.19:62201] logged in with entity id 2226 at (world, 154.3491, 4, 83.5527) +2015-06-29 [13:08:28] [Server thread/INFO]: EvilWarriorGirl left the game +2015-06-29 [13:08:28] [Server thread/INFO]: EvilWarriorGirl[/166.171.120.14:40401] logged out due to client disconnect +2015-06-29 [13:08:30] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:08:30] [Server thread/INFO]: agh mobile typing pleaaeses +2015-06-29 [13:08:39] [Server thread/INFO]: ah google voice +2015-06-29 [13:08:41] [Server thread/INFO]: GeckoGamingYT left the game +2015-06-29 [13:08:41] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:57934] logged out due to timeout +2015-06-29 [13:08:42] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [13:08:42] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:50684] logged out due to timeout +2015-06-29 [13:08:42] [Server thread/INFO]: Ima try it +2015-06-29 [13:08:43] [Server thread/INFO]: xAlec left the game +2015-06-29 [13:08:43] [Server thread/INFO]: xAlec[/108.35.168.93:38337] logged out due to timeout +2015-06-29 [13:08:45] [Server thread/INFO]: is it maybe possible to do time set day? +2015-06-29 [13:08:47] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:65285] logged in with entity id 2234 at (world, 133.7, 3, 109.8689) +2015-06-29 [13:08:50] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [13:08:51] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:64951] logged in with entity id 2235 at (world, 147.365, 4, 182.2658) +2015-06-29 [13:08:54] [Server thread/INFO]: GeckoGamingYT joined the game +2015-06-29 [13:08:56] [Server thread/INFO]: not for us, mr mod ;) +2015-06-29 [13:09:12] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:09:12] [Server thread/INFO]: Byte_[/73.150.143.17:57930] logged out due to timeout +2015-06-29 [13:09:18] [Server thread/INFO]: Byte_[/73.150.143.17:45594] logged in with entity id 2251 at (world, 129.2931, 4, 114.0424) +2015-06-29 [13:09:19] [Server thread/INFO]: DaddyDean fell from a high place +2015-06-29 [13:09:21] [Server thread/INFO]: DaddyDean left the game +2015-06-29 [13:09:21] [Server thread/INFO]: DaddyDean[/188.207.92.49:33251] logged out due to client disconnect +2015-06-29 [13:09:21] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:09:22] [Server thread/INFO]: Jhurts left the game +2015-06-29 [13:09:22] [Server thread/INFO]: Jhurts[/24.56.188.234:57877] logged out due to timeout +2015-06-29 [13:09:24] [Server thread/INFO]: DaddyDean[/188.207.92.49:33255] logged in with entity id 2264 at (world, 145.3131, 3.4729, 119.3555) +2015-06-29 [13:09:26] [Server thread/INFO]: wh +2015-06-29 [13:09:28] [Server thread/INFO]: DaddyDean joined the game +2015-06-29 [13:09:30] [Server thread/INFO]: magicjuju left the game +2015-06-29 [13:09:30] [Server thread/INFO]: magicjuju[/166.175.63.79:19440] logged out due to timeout +2015-06-29 [13:09:30] [Server thread/INFO]: wb* +2015-06-29 [13:09:43] [Server thread/INFO]: Antlo[/184.39.3.3:49374] logged in with entity id 2301 at (world, 150.2796, 4, 147.7715) +2015-06-29 [13:09:46] [Server thread/INFO]: Antlo joined the game +2015-06-29 [13:09:47] [Server thread/INFO]: xAlec[/108.35.168.93:37434] logged in with entity id 2308 at (world, 172.9518, 4, 112.3958) +2015-06-29 [13:09:50] [Server thread/INFO]: xAlec joined the game +2015-06-29 [13:10:06] [Server thread/INFO]: well +2015-06-29 [13:10:15] [Server thread/INFO]: this is neat but weird +2015-06-29 [13:10:26] [Server thread/INFO]: I have the perfect way to test if chiss is legit +2015-06-29 [13:10:35] [Server thread/INFO]: dennis fell from a high place +2015-06-29 [13:10:36] [Server thread/INFO]: Antlo left the game +2015-06-29 [13:10:36] [Server thread/INFO]: Antlo[/184.39.3.3:49374] logged out due to client disconnect +2015-06-29 [13:10:36] [Server thread/INFO]: hoa +2015-06-29 [13:10:39] [Server thread/INFO]: CHISS I HAVE BAGLES. +2015-06-29 [13:10:43] [Server thread/INFO]: Whvian fell from a high place +2015-06-29 [13:10:49] [Server thread/INFO]: did i do it? +2015-06-29 [13:10:51] [Server thread/INFO]: no? +2015-06-29 [13:10:53] [Server thread/INFO]: ok. +2015-06-29 [13:11:00] [Server thread/INFO]: bant for caps +2015-06-29 [13:11:01] [Server thread/INFO]: me to, chiss when is clanz coming +2015-06-29 [13:11:02] [Server thread/INFO]: dennis left the game +2015-06-29 [13:11:02] [Server thread/INFO]: dennis[/108.82.94.94:64840] logged out due to client disconnect +2015-06-29 [13:11:06] [Server thread/INFO]: ik what the bettermc clans code directory is in the plugins folder of mp +2015-06-29 [13:11:07] [Server thread/INFO]: dennis[/108.82.94.94:51959] logged in with entity id 2454 at (world, 147.8012, 4, 124.3926) +2015-06-29 [13:11:10] [Server thread/INFO]: dennis joined the game +2015-06-29 [13:11:11] [Server thread/INFO]: I think theres a new IP? +2015-06-29 [13:11:14] [Server thread/INFO]: :D +2015-06-29 [13:11:20] [Server thread/INFO]: mineplex.com? +2015-06-29 [13:11:25] [Server thread/INFO]: 15Ibans left the game +2015-06-29 [13:11:25] [Server thread/INFO]: 15Ibans[/72.91.34.54:59901] logged out due to client disconnect +2015-06-29 [13:11:30] [Server thread/INFO]: Ima try it +2015-06-29 [13:11:32] [Server thread/INFO]: Charcoal_Inc fell from a high place +2015-06-29 [13:11:36] [Server thread/INFO]: word ip's arent supported i thought? +2015-06-29 [13:11:38] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:11:38] [Server thread/INFO]: Byte_[/73.150.143.17:45594] logged out due to client disconnect +2015-06-29 [13:11:44] [Server thread/INFO]: riiip +2015-06-29 [13:11:44] [Server thread/INFO]: They work +2015-06-29 [13:11:44] [Server thread/INFO]: xAlec left the game +2015-06-29 [13:11:44] [Server thread/INFO]: xAlec[/108.35.168.93:37434] logged out due to client disconnect +2015-06-29 [13:11:56] [Server thread/INFO]: I have a few servers that have names for IP's +2015-06-29 [13:12:04] [Server thread/INFO]: i want a real jey board +2015-06-29 [13:12:10] [Server thread/INFO]: LukeSkywalker fell from a high place +2015-06-29 [13:12:17] [Server thread/INFO]: anyway brb chdcking something +2015-06-29 [13:12:32] [Server thread/INFO]: RacgiMan left the game +2015-06-29 [13:12:32] [Server thread/INFO]: RacgiMan[/70.113.10.54:58650] logged out due to timeout +2015-06-29 [13:12:35] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:12:35] [Server thread/INFO]: Anthony2202[/172.88.60.19:62201] logged out due to client disconnect +2015-06-29 [13:12:35] [Server thread/INFO]: any not on a 6+ must hate typing lol +2015-06-29 [13:12:40] [Server thread/INFO]: Adam_TDC[/24.57.12.8:43036] logged out due to Outdated client! +2015-06-29 [13:12:42] [Server thread/INFO]: this is boring +2015-06-29 [13:12:45] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [13:12:45] [Server thread/INFO]: PizzaMan319[/24.112.237.66:33109] logged out due to client disconnect +2015-06-29 [13:12:45] [Server thread/INFO]: Byte_[/73.150.143.17:34111] logged in with entity id 2673 at (world, 129.2931, 4, 114.0424) +2015-06-29 [13:12:48] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:12:53] [Server thread/INFO]: Anthony2202[/172.88.60.19:50767] logged in with entity id 2688 at (world, 160.4214, 4, 76.6191) +2015-06-29 [13:12:55] [Server thread/INFO]: Whvian fell from a high place +2015-06-29 [13:12:56] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:13:25] [Server thread/INFO]: Crumplex left the game +2015-06-29 [13:13:25] [Server thread/INFO]: Crumplex[/73.5.179.208:52041] logged out due to timeout +2015-06-29 [13:13:35] [Server thread/INFO]: RacgiMan[/70.113.10.54:56618] logged in with entity id 2750 at (world, 131.1181, 4, 119.1064) +2015-06-29 [13:13:35] [Server thread/INFO]: Charcoal_Inc fell from a high place +2015-06-29 [13:13:38] [Server thread/INFO]: RacgiMan joined the game +2015-06-29 [13:13:55] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:13:59] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:14:13] [Server thread/NOTICE]: Player data not found for "adam_tdc", creating new profile +2015-06-29 [13:14:13] [Server thread/INFO]: Adam_TDC[/24.57.12.8:47182] logged in with entity id 2769 at (world, 128, 4, 128) +2015-06-29 [13:14:15] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:14:16] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:14:16] [Server thread/INFO]: RacgiMan left the game +2015-06-29 [13:14:16] [Server thread/INFO]: RacgiMan[/70.113.10.54:56618] logged out due to timeout +2015-06-29 [13:14:19] [Server thread/INFO]: Jhurts[/24.56.188.234:49353] logged in with entity id 2775 at (world, 283.7472, 4, 123.3939) +2015-06-29 [13:14:20] [Server thread/WARNING]: Anonie moved wrongly! +2015-06-29 [13:14:23] [Server thread/INFO]: Jhurts joined the game +2015-06-29 [13:14:34] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:14:35] [Server thread/INFO]: ohai snowball +2015-06-29 [13:14:39] [Server thread/INFO]: Anonie fell from a high place +2015-06-29 [13:14:42] [Server thread/INFO]: does mineplex.com work +2015-06-29 [13:14:43] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:14:43] [Server thread/INFO]: DaddyDean fell from a high place +2015-06-29 [13:14:47] [Server thread/INFO]: Antlo[/184.39.3.3:50481] logged in with entity id 2826 at (world, 131.8825, 4, 117.2069) +2015-06-29 [13:14:50] [Server thread/INFO]: no +2015-06-29 [13:14:50] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:14:50] [Server thread/INFO]: Antlo joined the game +2015-06-29 [13:14:51] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:14:52] [Server thread/INFO]: rude +2015-06-29 [13:14:55] [Server thread/INFO]: so rude +2015-06-29 [13:14:56] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:15:00] [Server thread/INFO]: Charcoal_Inc left the game +2015-06-29 [13:15:00] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:41638] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [13:15:00] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:15:00] [Server thread/INFO]: Adam_TDC[/24.57.12.8:47182] logged out due to client disconnect +2015-06-29 [13:15:10] [Server thread/INFO]: Where am I +2015-06-29 [13:15:11] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:46547] logged in with entity id 2868 at (world, 155.7, 14, 117.4331) +2015-06-29 [13:15:14] [Server thread/INFO]: Charcoal_Inc joined the game +2015-06-29 [13:15:22] [Server thread/INFO]: lolwut +2015-06-29 [13:15:27] [Server thread/INFO]: kicked flr flying +2015-06-29 [13:15:30] [Server thread/INFO]: antlooo +2015-06-29 [13:15:35] [Server thread/INFO]: Haxer +2015-06-29 [13:15:46] [Server thread/NOTICE]: Player data not found for "nightwolf9", creating new profile +2015-06-29 [13:15:46] [Server thread/INFO]: NightWolf9[/104.10.145.13:53161] logged in with entity id 2921 at (world, 128, 4, 128) +2015-06-29 [13:15:49] [Server thread/INFO]: NightWolf9 joined the game +2015-06-29 [13:15:54] [Server thread/INFO]: UntoldFury[/98.222.79.234:57366] logged in with entity id 2931 at (world, 81.5131, 75, 252.2354) +2015-06-29 [13:15:59] [Server thread/INFO]: UntoldFury joined the game +2015-06-29 [13:16:03] [Server thread/INFO]: Adam_TDC[/24.57.12.8:36513] logged in with entity id 2940 at (world, 174.5296, 4, 85.8791) +2015-06-29 [13:16:03] [Server thread/INFO]: samito +2015-06-29 [13:16:04] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:16:06] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:16:07] [Server thread/INFO]: greencreeper138 fell from a high place +2015-06-29 [13:16:24] [Server thread/INFO]: THESE CONTROLS :( +2015-06-29 [13:16:25] [Server thread/INFO]: UntoldFury left the game +2015-06-29 [13:16:25] [Server thread/INFO]: UntoldFury[/98.222.79.234:57366] logged out due to timeout +2015-06-29 [13:16:25] [Server thread/INFO]: maukamauka[/52.6.86.115:56902] logged in with entity id 2966 at (world, 162.7648, 4, -560.8434) +2015-06-29 [13:16:31] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [13:16:35] [Server thread/INFO]: Buffymlg[/104.169.232.168:57668] logged in with entity id 2976 at (world, 128, 76, 128) +2015-06-29 [13:16:38] [Server thread/INFO]: Buffymlg joined the game +2015-06-29 [13:16:40] [Server thread/INFO]: hai snowballcps! +2015-06-29 [13:16:48] [Server thread/INFO]: im getting on my ipad , this is too hard +2015-06-29 [13:16:52] [Server thread/INFO]: iFantasii left the game +2015-06-29 [13:16:52] [Server thread/INFO]: iFantasii[/68.80.18.137:61625] logged out due to client disconnect +2015-06-29 [13:16:52] [Server thread/INFO]: Hai Buffy! +2015-06-29 [13:16:52] [Server thread/INFO]: not a fan of PE :( +2015-06-29 [13:16:56] [Server thread/INFO]: Antlo left the game +2015-06-29 [13:16:56] [Server thread/INFO]: Antlo[/184.39.3.3:50481] logged out due to client disconnect +2015-06-29 [13:17:04] [Server thread/INFO]: maukamauka died +2015-06-29 [13:17:12] [Server thread/INFO]: iphone ) +2015-06-29 [13:17:13] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:17:21] [Server thread/INFO]: iPad :) +2015-06-29 [13:17:21] [Server thread/INFO]: 6+ +2015-06-29 [13:17:32] [Server thread/INFO]: iPwn iSmack +2015-06-29 [13:17:35] [Server thread/INFO]: Charcoal_Inc fell from a high place +2015-06-29 [13:17:43] [Server thread/WARNING]: greencreeper138 moved wrongly! +2015-06-29 [13:17:54] [Server thread/INFO]: edgardme3 left the game +2015-06-29 [13:17:54] [Server thread/INFO]: edgardme3[/74.194.110.14:58645] logged out due to client disconnect +2015-06-29 [13:18:01] [Server thread/INFO]: NightWolf9 left the game +2015-06-29 [13:18:01] [Server thread/INFO]: NightWolf9[/104.10.145.13:53161] logged out due to client disconnect +2015-06-29 [13:18:03] [Server thread/INFO]: LukeSkywalker fell from a high place +2015-06-29 [13:18:03] [Server thread/INFO]: this is skywars 2.0 +2015-06-29 [13:18:11] [Server thread/INFO]: kk +2015-06-29 [13:18:13] [Server thread/INFO]: Clans 2.0 +2015-06-29 [13:18:14] [Server thread/INFO]: DaddyDean left the game +2015-06-29 [13:18:14] [Server thread/INFO]: DaddyDean[/188.207.92.49:33255] logged out due to timeout +2015-06-29 [13:18:17] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:18:17] [Server thread/INFO]: Byte_[/73.150.143.17:34111] logged out due to client disconnect +2015-06-29 [13:18:21] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [13:18:21] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:65264] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [13:18:24] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:18:24] [Server thread/INFO]: Adam_TDC[/24.57.12.8:36513] logged out due to client disconnect +2015-06-29 [13:18:25] [Server thread/INFO]: Whvian left the game +2015-06-29 [13:18:25] [Server thread/INFO]: Whvian[/108.6.213.211:50499] logged out due to client disconnect +2015-06-29 [13:18:26] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:52165] logged in with entity id 3190 at (world, 201.1924, 8, 138.3329) +2015-06-29 [13:18:27] [Server thread/INFO]: DaddyDean[/188.207.92.49:33276] logged in with entity id 3193 at (world, 128, 4, 128) +2015-06-29 [13:18:29] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [13:18:30] [Server thread/INFO]: clans pre alpha +2015-06-29 [13:18:31] [Server thread/INFO]: DaddyDean joined the game +2015-06-29 [13:18:35] [Server thread/INFO]: this isnclans testing +2015-06-29 [13:18:38] [Server thread/INFO]: Clans pre gamma beta alpha +2015-06-29 [13:18:50] [Server thread/INFO]: Logic +2015-06-29 [13:18:57] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [13:18:57] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:65285] logged out due to timeout +2015-06-29 [13:18:57] [Server thread/WARNING]: Buffymlg moved wrongly! +2015-06-29 [13:18:58] [Server thread/INFO]: clans pre existence +2015-06-29 [13:19:06] [Server thread/INFO]: Yeee +2015-06-29 [13:19:13] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:19:15] [Server thread/INFO]: Charcoal_Inc fell out of the world +2015-06-29 [13:19:16] [Server thread/INFO]: xAlec[/108.35.168.93:35252] logged in with entity id 3263 at (world, 142.7, 3, 98.4394) +2015-06-29 [13:19:19] [Server thread/INFO]: xAlec joined the game +2015-06-29 [13:19:22] [Server thread/INFO]: omg +2015-06-29 [13:19:23] [Server thread/INFO]: wut +2015-06-29 [13:19:27] [Server thread/INFO]: xAlec left the game +2015-06-29 [13:19:27] [Server thread/INFO]: xAlec[/108.35.168.93:35252] logged out due to client disconnect +2015-06-29 [13:19:36] [Server thread/INFO]: x +2015-06-29 [13:19:44] [Server thread/INFO]: Anonie fell from a high place +2015-06-29 [13:19:46] [Server thread/INFO]: im so swag I teleported out of the world +2015-06-29 [13:19:50] [Server thread/INFO]: pikachomp fell from a high place +2015-06-29 [13:19:55] [Server thread/INFO]: DaddyDean died +2015-06-29 [13:19:59] [Server thread/INFO]: Antlo[/184.39.3.3:51117] logged in with entity id 3324 at (world, 209.3384, 4, 128.5263) +2015-06-29 [13:20:02] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:20:02] [Server thread/INFO]: Antlo joined the game +2015-06-29 [13:20:03] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:20:18] [Server thread/INFO]: antlo <3 +2015-06-29 [13:20:20] [Server thread/INFO]: DaddyDean left the game +2015-06-29 [13:20:20] [Server thread/INFO]: DaddyDean[/188.207.92.49:33276] logged out due to timeout +2015-06-29 [13:20:22] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:20:26] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:49405] logged in with entity id 3403 at (world, 146.5537, 4, 96.5182) +2015-06-29 [13:20:29] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [13:20:29] [Server thread/INFO]: i lag bad +2015-06-29 [13:20:37] [Server thread/INFO]: Antlo left the game +2015-06-29 [13:20:37] [Server thread/INFO]: Antlo[/184.39.3.3:51117] logged out due to client disconnect +2015-06-29 [13:20:37] [Server thread/INFO]: i dont +2015-06-29 [13:20:37] [Server thread/WARNING]: pikachomp moved wrongly! +2015-06-29 [13:20:44] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:20:47] [Server thread/INFO]: Buffymlg left the game +2015-06-29 [13:20:47] [Server thread/INFO]: Buffymlg[/104.169.232.168:57668] logged out due to client disconnect +2015-06-29 [13:20:50] [Server thread/INFO]: Jhurts fell from a high place +2015-06-29 [13:20:53] [Server thread/INFO]: Jhurts left the game +2015-06-29 [13:20:53] [Server thread/INFO]: Jhurts[/24.56.188.234:49353] logged out due to client disconnect +2015-06-29 [13:21:03] [Server thread/INFO]: Anonie left the game +2015-06-29 [13:21:03] [Server thread/INFO]: Anonie[/69.123.212.47:53231] logged out due to timeout +2015-06-29 [13:21:06] [Server thread/INFO]: Aleeex[/75.166.54.109:54419] logged in with entity id 3495 at (world, 153.0192, 5, 100.8926) +2015-06-29 [13:21:09] [Server thread/INFO]: Aleeex joined the game +2015-06-29 [13:21:10] [Server thread/NOTICE]: Player data not found for "yasmine", creating new profile +2015-06-29 [13:21:10] [Server thread/INFO]: Yasmine[/24.56.188.234:51807] logged in with entity id 3506 at (world, 128, 4, 128) +2015-06-29 [13:21:13] [Server thread/INFO]: Yasmine joined the game +2015-06-29 [13:21:15] [Server thread/INFO]: FakeSven[/184.163.201.200:53577] logged in with entity id 3517 at (world, 144.8153, 36, 110.4378) +2015-06-29 [13:21:18] [Server thread/INFO]: FakeSven joined the game +2015-06-29 [13:21:21] [Server thread/INFO]: Hai Yasmine +2015-06-29 [13:21:28] [Server thread/INFO]: or fake Yasmine +2015-06-29 [13:21:32] [Server thread/INFO]: fake +2015-06-29 [13:21:37] [Server thread/INFO]: I cri +2015-06-29 [13:21:39] [Server thread/INFO]: PizzaMan319[/24.112.237.66:44853] logged in with entity id 3552 at (world, 188.1208, 4, 109.9303) +2015-06-29 [13:21:39] [Server thread/INFO]: Im fake sven huehue +2015-06-29 [13:21:42] [Server thread/INFO]: PizzaMan319 joined the game +2015-06-29 [13:21:55] [Server thread/INFO]: I am fake Yasmine +2015-06-29 [13:21:57] [Server thread/INFO]: PizzaMan319 left the game +2015-06-29 [13:21:57] [Server thread/INFO]: PizzaMan319[/24.112.237.66:44853] logged out due to client disconnect +2015-06-29 [13:22:04] [Server thread/INFO]: e.o +2015-06-29 [13:22:14] [Server thread/INFO]: FakeSven left the game +2015-06-29 [13:22:14] [Server thread/INFO]: FakeSven[/184.163.201.200:53577] logged out due to timeout +2015-06-29 [13:22:41] [Server thread/INFO]: Don't ruin my sign ;-; +2015-06-29 [13:22:41] [Server thread/INFO]: I am actually Jhurts e.ᴱ +2015-06-29 [13:22:48] [Server thread/INFO]: Ohh +2015-06-29 [13:22:54] [Server thread/INFO]: You are so wrongfg +2015-06-29 [13:22:57] [Server thread/INFO]: Aleeex left the game +2015-06-29 [13:22:57] [Server thread/INFO]: Aleeex[/75.166.54.109:54419] logged out due to timeout +2015-06-29 [13:22:58] [Server thread/INFO]: ★ +2015-06-29 [13:22:59] [Server thread/INFO]: CHAT HACKS +2015-06-29 [13:23:00] [Server thread/INFO]: Wronggg* +2015-06-29 [13:23:09] [Server thread/INFO]: ‰ +2015-06-29 [13:23:13] [Server thread/INFO]: ᴼᴹᴳ ᴰᴵᴰ ᴵ ᴶᵁˢᵀ ᶜᴴᴬᴺᴳᴱ ᴹᵞ ᵀᴱˣᵀ +2015-06-29 [13:23:18] [Server thread/NOTICE]: Player data not found for "dctr", creating new profile +2015-06-29 [13:23:18] [Server thread/INFO]: Dctr[/50.101.241.235:63611] logged in with entity id 3674 at (world, 128, 4, 128) +2015-06-29 [13:23:21] [Server thread/INFO]: I'mMovable[/184.163.201.200:52365] logged out due to Invalid name! +2015-06-29 [13:23:22] [Server thread/INFO]: Dctr joined the game +2015-06-29 [13:23:28] [Server thread/INFO]: ong +2015-06-29 [13:23:30] [Server thread/INFO]: omg +2015-06-29 [13:23:33] [Server thread/INFO]: hi dctr +2015-06-29 [13:23:35] [Server thread/INFO]: ImMovable[/184.163.201.200:57441] logged in with entity id 3683 at (world, 137.7005, 4, 116.0485) +2015-06-29 [13:23:35] [Server thread/INFO]: fake +2015-06-29 [13:23:36] [Server thread/INFO]: ᶠᴬᴷᴱ ᴰᶜᵀᴿ +2015-06-29 [13:23:38] [Server thread/INFO]: ImMovable joined the game +2015-06-29 [13:23:38] [Server thread/INFO]: RacgiMan[/70.113.10.54:64484] logged in with entity id 3684 at (world, 131.1181, 4, 119.1064) +2015-06-29 [13:23:41] [Server thread/INFO]: RacgiMan joined the game +2015-06-29 [13:23:43] [Server thread/INFO]: hey +2015-06-29 [13:23:49] [Server thread/INFO]: ᶠᴬᴷᴱ +2015-06-29 [13:23:50] [Server thread/INFO]: Am i late? +2015-06-29 [13:23:50] [Server thread/INFO]: r u fake +2015-06-29 [13:23:58] [Server thread/INFO]: hm. +2015-06-29 [13:23:58] [Server thread/INFO]: nah im the real one +2015-06-29 [13:24:03] [Server thread/INFO]: itz the canadian skrub <: +2015-06-29 [13:24:05] [Server thread/INFO]: swag¡i +2015-06-29 [13:24:06] [Server thread/WARNING]: maukamauka moved wrongly! +2015-06-29 [13:24:07] [Server thread/INFO]: honesy +2015-06-29 [13:24:10] [Server thread/INFO]: dennis fell from a high place +2015-06-29 [13:24:12] [Server thread/INFO]: then announcement +2015-06-29 [13:24:13] [Server thread/INFO]: ᴺᴬᴴ ᶠᴬᴷᴱ +2015-06-29 [13:24:15] [Server thread/INFO]: dennis left the game +2015-06-29 [13:24:15] [Server thread/INFO]: dennis[/108.82.94.94:51959] logged out due to client disconnect +2015-06-29 [13:24:18] [Server thread/INFO]: honestly* +2015-06-29 [13:24:20] [Server thread/INFO]: Wolfheart723[/70.114.250.112:52002] logged in with entity id 3697 at (world, 157.0155, 4, 122.2555) +2015-06-29 [13:24:23] [Server thread/INFO]: Wolfheart723 joined the game +2015-06-29 [13:24:24] [Server thread/INFO]: Only the real Dctr would know this.. +2015-06-29 [13:24:30] [Server thread/INFO]: What's your account pass? +2015-06-29 [13:24:31] [Server thread/NOTICE]: Player data not found for "defek7", creating new profile +2015-06-29 [13:24:31] [Server thread/INFO]: defek7[/108.82.94.94:52101] logged in with entity id 3705 at (world, 128, 4, 128) +2015-06-29 [13:24:34] [Server thread/INFO]: i¡i¡i¡ii -=QOTD=- +2015-06-29 [13:24:34] [Server thread/INFO]: 1. Turn on the anti-knockback preference option. No reason to let a salty player annoy you. +2015-06-29 [13:24:34] [Server thread/INFO]: defek7 joined the game +2015-06-29 [13:24:35] [Server thread/INFO]: xd +2015-06-29 [13:24:35] [Server thread/INFO]: what about dctr? +2015-06-29 [13:24:36] [Server thread/INFO]: without a wall post or somethinf +2015-06-29 [13:24:43] [Server thread/INFO]: defek you fake af +2015-06-29 [13:24:43] [Server thread/INFO]: dahexk +2015-06-29 [13:24:46] [Server thread/INFO]: ᶠᴬᴷᴱ +2015-06-29 [13:24:53] [Server thread/INFO]: pikachomp fell from a high place +2015-06-29 [13:24:54] [Server thread/INFO]: yasmine you real? +2015-06-29 [13:24:55] [Server thread/INFO]: Adam_TDC[/24.57.12.8:46815] logged in with entity id 3723 at (world, 239.0831, 4, 106.3074) +2015-06-29 [13:24:56] [Server thread/INFO]: ImMovable left the game +2015-06-29 [13:24:56] [Server thread/INFO]: ImMovable[/184.163.201.200:57441] logged out due to timeout +2015-06-29 [13:24:58] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:24:58] [Server thread/INFO]: I smell. +2015-06-29 [13:24:59] [Server thread/INFO]: ᴺᴼ +2015-06-29 [13:25:00] [Server thread/INFO]: SirBird[/85.65.138.176:61053] logged in with entity id 3731 at (world, -20.2863, 63, 529.1335) +2015-06-29 [13:25:06] [Server thread/INFO]: SirBird joined the game +2015-06-29 [13:25:10] [Server thread/INFO]: hai defek +2015-06-29 [13:25:14] [Server thread/INFO]: Yasmine left the game +2015-06-29 [13:25:14] [Server thread/INFO]: Yasmine[/24.56.188.234:51807] logged out due to client disconnect +2015-06-29 [13:25:16] [Server thread/INFO]: dctr smells more +2015-06-29 [13:25:17] [Server thread/INFO]: how did you do rhe small name thing? +2015-06-29 [13:25:18] [Server thread/INFO]: Hai! +2015-06-29 [13:25:20] [Server thread/WARNING]: pikachomp moved wrongly! +2015-06-29 [13:25:22] [Server thread/INFO]: defek7 left the game +2015-06-29 [13:25:22] [Server thread/INFO]: defek7[/108.82.94.94:52101] logged out due to client disconnect +2015-06-29 [13:25:28] [Server thread/INFO]: sirbird +2015-06-29 [13:25:28] [Server thread/INFO]: ᴶᴴᵁᴿᵀˢ[/24.56.188.234:55615] logged out due to Invalid name! +2015-06-29 [13:25:28] [Server thread/INFO]: Im assuming everyone is cak +2015-06-29 [13:25:29] [Server thread/INFO]: f +2015-06-29 [13:25:32] [Server thread/INFO]: you real? +2015-06-29 [13:25:33] [Server thread/INFO]: fake** +2015-06-29 [13:25:35] [Server thread/INFO]: Hiya! ;) +2015-06-29 [13:25:37] [Server thread/NOTICE]: Player data not found for "sterling_", creating new profile +2015-06-29 [13:25:37] [Server thread/INFO]: sterling_[/108.82.94.94:52111] logged in with entity id 3761 at (world, 128, 4, 128) +2015-06-29 [13:25:40] [Server thread/INFO]: sid doesnt seem fake +2015-06-29 [13:25:40] [Server thread/INFO]: sterling_ joined the game +2015-06-29 [13:25:43] [Server thread/INFO]: sir* +2015-06-29 [13:25:46] [Server thread/INFO]: maukamauka left the game +2015-06-29 [13:25:46] [Server thread/INFO]: maukamauka[/52.6.86.115:56902] logged out due to timeout +2015-06-29 [13:25:50] [Server thread/INFO]: Jhurts[/24.56.188.234:55022] logged in with entity id 3768 at (world, 148.1456, 1.8517, 122.2604) +2015-06-29 [13:25:51] [Server thread/INFO]: this is all fake right? +2015-06-29 [13:25:52] [Server thread/INFO]: Let's get this started! +2015-06-29 [13:25:52] [Server thread/INFO]: 3vandg[/73.22.163.221:59804] logged in with entity id 3769 at (world, 168.4477, 0, 121.8161) +2015-06-29 [13:25:53] [Server thread/INFO]: Jhurts joined the game +2015-06-29 [13:25:54] [Server thread/INFO]: gr8 b8 m8 (sterling) +2015-06-29 [13:25:55] [Server thread/INFO]: starling :D +2015-06-29 [13:25:55] [Server thread/INFO]: 3vandg joined the game +2015-06-29 [13:26:01] [Server thread/INFO]: Byte_[/73.150.143.17:48260] logged in with entity id 3773 at (world, 327.8926, 4, 98.1933) +2015-06-29 [13:26:06] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:26:07] [Server thread/INFO]: xPixel[/24.29.95.166:55402] logged in with entity id 3779 at (world, 142.3778, 71, 125.8022) +2015-06-29 [13:26:07] [Server thread/INFO]: Welcome Bacl Birdy o/ +2015-06-29 [13:26:08] [Server thread/INFO]: imma go to bed xddd +2015-06-29 [13:26:10] [Server thread/INFO]: xPixel joined the game +2015-06-29 [13:26:10] [Server thread/INFO]: dun +2015-06-29 [13:26:11] [Server thread/INFO]: ҉҉ +2015-06-29 [13:26:12] [Server thread/INFO]: Back* +2015-06-29 [13:26:14] [Server thread/INFO]: ay byteee +2015-06-29 [13:26:15] [Server thread/INFO]: Chiss is coming in a few seconds. Calling him. +2015-06-29 [13:26:16] [Server thread/INFO]: ҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉҉ +2015-06-29 [13:26:17] [Server thread/INFO]: sterling_ left the game +2015-06-29 [13:26:17] [Server thread/INFO]: sterling_[/108.82.94.94:52111] logged out due to client disconnect +2015-06-29 [13:26:22] [Server thread/INFO]: My, I thought the announcement said we were doing this on another IP! :P Testing is fun! +2015-06-29 [13:26:23] [Server thread/INFO]: <3vandg> in game announcement? what have you done? +2015-06-29 [13:26:25] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:26:25] [Server thread/INFO]: Byte_[/73.150.143.17:48260] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [13:26:25] [Server thread/INFO]: Byte_[/73.150.143.17:50768] logged in with entity id 3797 at (world, 328.137, 4, 98.1364) +2015-06-29 [13:26:28] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:26:30] [Server thread/INFO]: Chiss[/108.82.94.94:52122] logged in with entity id 3801 at (world, 74.0389, 4, 136.4145) +2015-06-29 [13:26:30] [Server thread/INFO]: night real peos. +2015-06-29 [13:26:34] [Server thread/INFO]: Chiss joined the game +2015-06-29 [13:26:34] [Server thread/INFO]: UntoldFury[/98.222.79.234:46396] logged in with entity id 3806 at (world, 82.5338, 4, 255.312) +2015-06-29 [13:26:36] [Server thread/INFO]: people* +2015-06-29 [13:26:39] [Server thread/WARNING]: pikachomp moved wrongly! +2015-06-29 [13:26:39] [Server thread/INFO]: UntoldFury joined the game +2015-06-29 [13:26:41] [Server thread/INFO]: Ⓗⓘ +2015-06-29 [13:26:43] [Server thread/WARNING]: GeckoGamingYT moved wrongly! +2015-06-29 [13:26:44] [Server thread/INFO]: i just made a forum post about this! go check it out :D +2015-06-29 [13:26:47] [Server thread/INFO]: not you though chiss, yiu cKe +2015-06-29 [13:26:48] [Server thread/INFO]: Hai everyone! +2015-06-29 [13:26:50] [Server thread/INFO]: Ⓔⓦ Ⓕⓐⓚⓔ Ⓒⓗⓘⓢⓢ +2015-06-29 [13:26:51] [Server thread/INFO]: fake* +2015-06-29 [13:26:52] [Server thread/INFO]: 3vandg left the game +2015-06-29 [13:26:52] [Server thread/INFO]: 3vandg[/73.22.163.221:59804] logged out due to client disconnect +2015-06-29 [13:26:55] [Server thread/INFO]: I just cant use PE... +2015-06-29 [13:26:56] [Server thread/INFO]: ... +2015-06-29 [13:26:56] [Server thread/INFO]: ok now i know chiss is fake +2015-06-29 [13:26:59] [Server thread/INFO]: LoggedIn[/12.238.61.12:53368] logged in with entity id 3814 at (world, 168.8176, 4, 115.5493) +2015-06-29 [13:27:00] [Server thread/INFO]: We are testing clans today. +2015-06-29 [13:27:02] [Server thread/INFO]: UntoldFury left the game +2015-06-29 [13:27:02] [Server thread/INFO]: UntoldFury[/98.222.79.234:46396] logged out due to timeout +2015-06-29 [13:27:02] [Server thread/INFO]: LoggedIn joined the game +2015-06-29 [13:27:03] [Server thread/WARNING]: pikachomp moved wrongly! +2015-06-29 [13:27:04] [Server thread/INFO]: RacgiMan left the game +2015-06-29 [13:27:04] [Server thread/INFO]: RacgiMan[/70.113.10.54:64484] logged out due to timeout +2015-06-29 [13:27:07] [Server thread/INFO]: Lmao no +2015-06-29 [13:27:10] [Server thread/INFO]: Ⓕⓐⓚⓔ ⓒⓗⓘⓢⓢ +2015-06-29 [13:27:13] [Server thread/INFO]: Chiss left the game +2015-06-29 [13:27:13] [Server thread/INFO]: Chiss[/108.82.94.94:52122] logged out due to client disconnect +2015-06-29 [13:27:14] [Server thread/INFO]: sirbird +2015-06-29 [13:27:16] [Server thread/INFO]: This troll +2015-06-29 [13:27:26] [Server thread/INFO]: Ⓦⓗⓞ ⓛⓞⓥⓔⓢ ⓜⓔ +2015-06-29 [13:27:29] [Server thread/INFO]: is there gonna be a mp pe? +2015-06-29 [13:27:35] [Server thread/NOTICE]: Player data not found for "blazespot", creating new profile +2015-06-29 [13:27:35] [Server thread/INFO]: Blazespot[/108.82.94.94:52129] logged in with entity id 3843 at (world, 128, 4, 128) +2015-06-29 [13:27:36] [Server thread/INFO]: Yes, Wolfheart? ^-^ +2015-06-29 [13:27:38] [Server thread/INFO]: Blazespot joined the game +2015-06-29 [13:27:42] [Server thread/INFO]: doubt it +2015-06-29 [13:27:45] [Server thread/WARNING]: Dctr moved wrongly! +2015-06-29 [13:27:47] [Server thread/INFO]: hey blaze +2015-06-29 [13:27:47] [Server thread/INFO]: fake blaze +2015-06-29 [13:27:49] [Server thread/INFO]: I wanna start the clansssss +2015-06-29 [13:27:52] [Server thread/INFO]: we'll see +2015-06-29 [13:27:55] [Server thread/INFO]: Sirbird +2015-06-29 [13:27:57] [Server thread/INFO]: Blazespot left the game +2015-06-29 [13:27:57] [Server thread/INFO]: Blazespot[/108.82.94.94:52129] logged out due to client disconnect +2015-06-29 [13:27:58] [Server thread/INFO]: wtf +2015-06-29 [13:28:00] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [13:28:00] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:52165] logged out due to timeout +2015-06-29 [13:28:04] [Server thread/INFO]: Ⓕⓐⓚⓔ Ⓓⓒⓣⓡ +2015-06-29 [13:28:04] [Server thread/WARNING]: Adam_TDC moved wrongly! +2015-06-29 [13:28:05] [Server thread/INFO]: dctr too? +2015-06-29 [13:28:05] [Server thread/INFO]: such fake +2015-06-29 [13:28:06] [Server thread/INFO]: Dctr left the game +2015-06-29 [13:28:06] [Server thread/INFO]: Dctr[/50.101.241.235:63611] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [13:28:06] [Server thread/INFO]: Dctr[/108.82.94.94:52136] logged in with entity id 3873 at (world, 164.3426, 3, 127.3877) +2015-06-29 [13:28:08] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:12148] logged in with entity id 3876 at (world, 196.8123, 4, 126.4213) +2015-06-29 [13:28:09] [Server thread/INFO]: Dctr joined the game +2015-06-29 [13:28:10] [Server thread/INFO]: Hmm, as this is a stress test, I'm not certain if it will develop to an actual server! :o +2015-06-29 [13:28:11] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [13:28:11] [Server thread/INFO]: Dctr left the game +2015-06-29 [13:28:11] [Server thread/INFO]: Dctr[/108.82.94.94:52136] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [13:28:11] [Server thread/INFO]: Dctr[/50.101.241.235:60206] logged in with entity id 3879 at (world, 164.3426, 3, 127.3877) +2015-06-29 [13:28:12] [Server thread/INFO]: LOL +2015-06-29 [13:28:14] [Server thread/INFO]: Dctr joined the game +2015-06-29 [13:28:26] [Server thread/INFO]: someone tried to steal my name +2015-06-29 [13:28:29] [Server thread/INFO]: are one of you staff gonna post something on enjin avout it? +2015-06-29 [13:28:34] [Server thread/INFO]: gr8 +2015-06-29 [13:28:35] [Server thread/INFO]: Dctr left the game +2015-06-29 [13:28:35] [Server thread/INFO]: Dctr[/50.101.241.235:60206] logged out due to Kicked by admin. Reason: logged in from another location +2015-06-29 [13:28:35] [Server thread/INFO]: Dctr[/50.101.241.235:62775] logged in with entity id 3911 at (world, 164.3426, 3, 127.3877) +2015-06-29 [13:28:38] [Server thread/INFO]: Dctr joined the game +2015-06-29 [13:28:38] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:28:39] [Server thread/NOTICE]: Player data not found for "bluebeetlehd", creating new profile +2015-06-29 [13:28:39] [Server thread/INFO]: BlueBeetleHD[/108.82.94.94:52139] logged in with entity id 3916 at (world, 128, 4, 128) +2015-06-29 [13:28:42] [Server thread/INFO]: BlueBeetleHD joined the game +2015-06-29 [13:28:44] [Server thread/INFO]: the dctr spam +2015-06-29 [13:28:45] [Server thread/INFO]: DCTR +2015-06-29 [13:28:46] [Server thread/INFO]: You can stop... Nobody thinks you're the real +2015-06-29 [13:28:48] [Server thread/INFO]: snowballcps is nub +2015-06-29 [13:28:48] [Server thread/INFO]: fake bluebeetle +2015-06-29 [13:28:54] [Server thread/INFO]: I WAS LYING +2015-06-29 [13:28:59] [Server thread/INFO]: Hai I like pokemon. +2015-06-29 [13:29:00] [Server thread/INFO]: I AM SHREK LORD +2015-06-29 [13:29:05] [Server thread/INFO]: YEYEYEYEYEYS +2015-06-29 [13:29:09] [Server thread/INFO]: maukamauka[/52.6.86.115:51920] logged in with entity id 3948 at (world, 166.7095, 4, 129.4289) +2015-06-29 [13:29:12] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [13:29:14] [Server thread/INFO]: My favourite is squirtle! +2015-06-29 [13:29:14] [Server thread/INFO]: greencreeper138 left the game +2015-06-29 [13:29:14] [Server thread/INFO]: greencreeper138[/50.149.17.203:61029] logged out due to client disconnect +2015-06-29 [13:29:15] [Server thread/INFO]: xD +2015-06-29 [13:29:17] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:61123] logged in with entity id 3965 at (world, 126.3, 4, 28.1567) +2015-06-29 [13:29:18] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:29:18] [Server thread/INFO]: Anthony2202[/172.88.60.19:50767] logged out due to client disconnect +2015-06-29 [13:29:20] [Server thread/INFO]: greencreeper138[/50.149.17.203:63212] logged in with entity id 3973 at (world, 165.4373, 32, 105.3199) +2015-06-29 [13:29:22] [Server thread/INFO]: K dctr's fake +2015-06-29 [13:29:22] [Server thread/INFO]: mikelikesmuffins joined the game +2015-06-29 [13:29:23] [Server thread/INFO]: greencreeper138 joined the game +2015-06-29 [13:29:27] [Server thread/INFO]: BlueBeetleHD left the game +2015-06-29 [13:29:27] [Server thread/INFO]: BlueBeetleHD[/108.82.94.94:52139] logged out due to client disconnect +2015-06-29 [13:29:30] [Server thread/INFO]: i cant who is real +2015-06-29 [13:29:37] [Server thread/INFO]: I'm going to head out i've got some skype stuff to do, ill see you guys later +2015-06-29 [13:29:38] [Server thread/INFO]: my fav pokemon is rayquaza :D +2015-06-29 [13:29:38] [Server thread/INFO]: maukamauka hit the ground too hard +2015-06-29 [13:29:42] [Server thread/INFO]: tell who is* +2015-06-29 [13:29:49] [Server thread/INFO]: bye +2015-06-29 [13:29:51] [Server thread/NOTICE]: Player data not found for "parker_games", creating new profile +2015-06-29 [13:29:51] [Server thread/INFO]: Parker_Games[/108.82.94.94:52150] logged in with entity id 4005 at (world, 128, 4, 128) +2015-06-29 [13:29:53] [Server thread/INFO]: wait +2015-06-29 [13:29:54] [Server thread/INFO]: Parker_Games joined the game +2015-06-29 [13:29:55] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [13:29:56] [Server thread/WARNING]: LoggedIn moved wrongly! +2015-06-29 [13:29:56] [Server thread/INFO]: bye faketr +2015-06-29 [13:29:57] [Server thread/INFO]: Dctr left the game +2015-06-29 [13:29:57] [Server thread/INFO]: Dctr[/50.101.241.235:62775] logged out due to client disconnect +2015-06-29 [13:29:59] [Server thread/INFO]: LOL +2015-06-29 [13:30:00] [Server thread/INFO]: Hehehehe... +2015-06-29 [13:30:04] [Server thread/INFO]: Wow xD +2015-06-29 [13:30:05] [Server thread/INFO]: fake +2015-06-29 [13:30:07] [Server thread/INFO]: Fake +2015-06-29 [13:30:08] [Server thread/INFO]: 15Ibans[/72.91.34.54:48976] logged in with entity id 4012 at (world, 151.2173, 4, 96.5911) +2015-06-29 [13:30:08] [Server thread/INFO]: LMao +2015-06-29 [13:30:09] [Server thread/INFO]: LoggedIn left the game +2015-06-29 [13:30:09] [Server thread/INFO]: LoggedIn[/12.238.61.12:53368] logged out due to client disconnect +2015-06-29 [13:30:10] [Server thread/INFO]: gr8 +2015-06-29 [13:30:11] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [13:30:12] [Server thread/INFO]: cake +2015-06-29 [13:30:12] [Server thread/INFO]: I came to troll with Jeffery... +2015-06-29 [13:30:14] [Server thread/INFO]: fake train +2015-06-29 [13:30:15] [Server thread/INFO]: The one who is using the identity as [Server] is Chiss. Otheewise. we cannot be sure :P +2015-06-29 [13:30:16] [Server thread/INFO]: fake +2015-06-29 [13:30:17] [Server thread/INFO]: this mid +2015-06-29 [13:30:20] [Server thread/INFO]: I'm fake too! +2015-06-29 [13:30:22] [Server thread/INFO]: *kid +2015-06-29 [13:30:26] [Server thread/INFO]: 15 ⓢⓣⓞⓟ ⓕⓐⓚⓘⓝⓖ +2015-06-29 [13:30:28] [Server thread/INFO]: my is jeffrey -.- +2015-06-29 [13:30:33] [Server thread/NOTICE]: Player data not found for "notch", creating new profile +2015-06-29 [13:30:33] [Server thread/INFO]: Notch[/12.238.61.12:64668] logged in with entity id 4024 at (world, 128, 4, 128) +2015-06-29 [13:30:36] [Server thread/INFO]: Notch joined the game +2015-06-29 [13:30:40] [Server thread/INFO]: my names jeff +2015-06-29 [13:30:41] [Server thread/INFO]: gg +2015-06-29 [13:30:43] [Server thread/INFO]: Charcoal, can I try something with that sign? +2015-06-29 [13:30:45] [Server thread/INFO]: XD +2015-06-29 [13:30:50] [Server thread/INFO]: Hehehe... I hacked onto Chiss. +2015-06-29 [13:30:52] [Server thread/INFO]: woah fake levl over 9000 notch +2015-06-29 [13:31:02] [Server thread/INFO]: i'm notch +2015-06-29 [13:31:09] [Server thread/INFO]: boo +2015-06-29 [13:31:10] [Server thread/INFO]: k +2015-06-29 [13:31:11] [Server thread/INFO]: maukamauka left the game +2015-06-29 [13:31:11] [Server thread/INFO]: maukamauka[/52.6.86.115:51920] logged out due to timeout +2015-06-29 [13:31:15] [Server thread/INFO]: i scare u +2015-06-29 [13:31:17] [Server thread/WARNING]: Notch moved wrongly! +2015-06-29 [13:31:22] [Server thread/INFO]: Wolfheart723 left the game +2015-06-29 [13:31:22] [Server thread/INFO]: Wolfheart723[/70.114.250.112:52002] logged out due to client disconnect +2015-06-29 [13:31:22] [Server thread/INFO]: Gonna throw tnt on the world!!!! +2015-06-29 [13:31:23] [Server thread/INFO]: im hawt +2015-06-29 [13:31:27] [Server thread/INFO]: DX +2015-06-29 [13:31:28] [Server thread/INFO]: Notch left the game +2015-06-29 [13:31:28] [Server thread/INFO]: Notch[/12.238.61.12:64668] logged out due to client disconnect +2015-06-29 [13:31:35] [Server thread/INFO]: Parker_Games left the game +2015-06-29 [13:31:35] [Server thread/INFO]: Parker_Games[/108.82.94.94:52150] logged out due to client disconnect +2015-06-29 [13:31:37] [Server thread/NOTICE]: Player data not found for "sirlemoncurd", creating new profile +2015-06-29 [13:31:37] [Server thread/INFO]: SirLemonCurd[/70.114.250.112:50937] logged in with entity id 4098 at (world, 128, 4, 128) +2015-06-29 [13:31:38] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [13:31:38] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:49405] logged out due to timeout +2015-06-29 [13:31:40] [Server thread/INFO]: SirLemonCurd joined the game +2015-06-29 [13:31:48] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:54602] logged in with entity id 4110 at (world, 195.7594, 4, 108.9704) +2015-06-29 [13:31:50] [Server thread/INFO]: trying color codes? +2015-06-29 [13:31:51] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [13:31:51] [Server thread/INFO]: SirLemonCurd left the game +2015-06-29 [13:31:51] [Server thread/INFO]: SirLemonCurd[/70.114.250.112:50937] logged out due to timeout +2015-06-29 [13:31:56] [Server thread/INFO]: Barck Obama[/12.238.61.12:60275] logged out due to Invalid name! +2015-06-29 [13:31:57] [Server thread/NOTICE]: Player data not found for "noboom", creating new profile +2015-06-29 [13:31:57] [Server thread/INFO]: NoBoom[/108.82.94.94:52158] logged in with entity id 4120 at (world, 128, 4, 128) +2015-06-29 [13:32:00] [Server thread/INFO]: NoBoom joined the game +2015-06-29 [13:32:03] [Server thread/INFO]: Byte_ fell from a high place +2015-06-29 [13:32:04] [Server thread/INFO]: Barck Obama[/12.238.61.12:51324] logged out due to Invalid name! +2015-06-29 [13:32:09] [Server thread/INFO]: Noboom here! +2015-06-29 [13:32:12] [Server thread/INFO]: fake noboom +2015-06-29 [13:32:16] [Server thread/INFO]: * BaconBeanbag is now opped +2015-06-29 [13:32:22] [Server thread/INFO]: SirLemonCurd[/70.114.250.112:53631] logged in with entity id 4152 at (world, 128, 4, 128) +2015-06-29 [13:32:22] [Server thread/NOTICE]: Player data not found for "barck_obama", creating new profile +2015-06-29 [13:32:22] [Server thread/INFO]: Barck_Obama[/12.238.61.12:55365] logged in with entity id 4153 at (world, 128, 4, 128) +2015-06-29 [13:32:24] [Server thread/INFO]: greencreeper138 fell from a high place +2015-06-29 [13:32:24] [Server thread/INFO]: ...? +2015-06-29 [13:32:25] [Server thread/INFO]: SirLemonCurd joined the game +2015-06-29 [13:32:25] [Server thread/INFO]: Barck_Obama joined the game +2015-06-29 [13:32:31] [Server thread/INFO]: he's opped... +2015-06-29 [13:32:37] [Server thread/INFO]: * 15Ibans is now opped +2015-06-29 [13:32:39] [Server thread/INFO]: bac +2015-06-29 [13:32:42] [Server thread/INFO]: hello fellow americans! +2015-06-29 [13:32:43] [Server thread/INFO]: ..? +2015-06-29 [13:32:44] [Server thread/INFO]: sirbird you my cousin? +2015-06-29 [13:32:51] [Server thread/INFO]: <15Ibans> its /me xD +2015-06-29 [13:32:52] [Server thread/INFO]: Are you? :ooo +2015-06-29 [13:32:55] [Server thread/INFO]: we ryhme +2015-06-29 [13:32:59] [Server thread/INFO]: XDDD +2015-06-29 [13:33:04] [Server thread/INFO]: * LukeSkywalker wants clanz +2015-06-29 [13:33:08] [Server thread/INFO]: NoBoom left the game +2015-06-29 [13:33:08] [Server thread/INFO]: NoBoom[/108.82.94.94:52158] logged out due to client disconnect +2015-06-29 [13:33:10] [Server thread/INFO]: Type /me is opped +2015-06-29 [13:33:16] [Server thread/INFO]: * Jhurts is opped +2015-06-29 [13:33:24] [Server thread/INFO]: * Byte_ is Oppped +2015-06-29 [13:33:27] [Server thread/INFO]: * Barck_Obama I am Barack Obama. +2015-06-29 [13:33:28] [Server thread/NOTICE]: Player data not found for "blondebug", creating new profile +2015-06-29 [13:33:28] [Server thread/INFO]: blondebug[/108.82.94.94:52164] logged in with entity id 4192 at (world, 128, 4, 128) +2015-06-29 [13:33:28] [Server thread/INFO]: maukamauka[/52.6.86.115:57666] logged in with entity id 4193 at (world, 150.5212, 1, 96.7736) +2015-06-29 [13:33:30] [Server thread/INFO]: * GeckoGamingYT laughs at people for not knowing /me +2015-06-29 [13:33:31] [Server thread/INFO]: blondebug joined the game +2015-06-29 [13:33:31] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [13:33:34] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [13:33:34] [Server thread/INFO]: BaconBeanbag[/188.29.164.228:12148] logged out due to timeout +2015-06-29 [13:33:40] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:50282] logged in with entity id 4204 at (world, 179.4192, 4, 127.9801) +2015-06-29 [13:33:40] [Server thread/INFO]: Ew obama is here +2015-06-29 [13:33:41] [Server thread/INFO]: never knew the plugin was here +2015-06-29 [13:33:43] [Server thread/INFO]: BaconBeanbag joined the game +2015-06-29 [13:33:43] [Server thread/INFO]: I'm hot! +2015-06-29 [13:33:46] [Server thread/INFO]: maukamauka died +2015-06-29 [13:33:46] [Server thread/INFO]: BLONDE YOU FAKE AS HELL +2015-06-29 [13:33:48] [Server thread/INFO]: * Charcoal_Inc has a tree farm <3 +2015-06-29 [13:33:49] [Server thread/INFO]: Barck_Obama left the game +2015-06-29 [13:33:49] [Server thread/INFO]: Barck_Obama[/12.238.61.12:55365] logged out due to client disconnect +2015-06-29 [13:33:50] [Server thread/INFO]: *command +2015-06-29 [13:33:59] [Server thread/INFO]: you too +2015-06-29 [13:34:03] [Server thread/INFO]: blondebug left the game +2015-06-29 [13:34:03] [Server thread/INFO]: blondebug[/108.82.94.94:52164] logged out due to client disconnect +2015-06-29 [13:34:18] [Server thread/NOTICE]: Player data not found for "dooskeeisback", creating new profile +2015-06-29 [13:34:18] [Server thread/INFO]: DooskeeIsBack[/12.238.61.12:56659] logged in with entity id 4233 at (world, 128, 4, 128) +2015-06-29 [13:34:18] [Server thread/INFO]: greencreeper138 left the game +2015-06-29 [13:34:18] [Server thread/INFO]: greencreeper138[/50.149.17.203:63212] logged out due to client disconnect +2015-06-29 [13:34:21] [Server thread/INFO]: DooskeeIsBack joined the game +2015-06-29 [13:34:27] [Server thread/INFO]: gg +2015-06-29 [13:34:31] [Server thread/INFO]: SirBird left the game +2015-06-29 [13:34:31] [Server thread/INFO]: SirBird[/85.65.138.176:61053] logged out due to client disconnect +2015-06-29 [13:34:31] [Server thread/INFO]: SirLemonCurd left the game +2015-06-29 [13:34:31] [Server thread/INFO]: SirLemonCurd[/70.114.250.112:53631] logged out due to client disconnect +2015-06-29 [13:34:33] [Server thread/INFO]: I AM BACK! +2015-06-29 [13:34:34] [Server thread/INFO]: sterling_[/108.82.94.94:52218] logged in with entity id 4265 at (world, 128, 4, 128) +2015-06-29 [13:34:37] [Server thread/INFO]: sterling_ joined the game +2015-06-29 [13:34:37] [Server thread/INFO]: lel ew dooskee +2015-06-29 [13:34:38] [Server thread/WARNING]: Adam_TDC moved wrongly! +2015-06-29 [13:34:38] [Server thread/INFO]: A tree grew +2015-06-29 [13:34:41] [Server thread/WARNING]: DooskeeIsBack moved wrongly! +2015-06-29 [13:34:47] [Server thread/INFO]: * BaconBeanbag wants to purchse a tree from the farm +2015-06-29 [13:34:50] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:34:50] [Server thread/INFO]: Byte_[/73.150.143.17:50768] logged out due to timeout +2015-06-29 [13:34:50] [Server thread/INFO]: 15Ibans fell from a high place +2015-06-29 [13:34:57] [Server thread/NOTICE]: Player data not found for "thechessmaster", creating new profile +2015-06-29 [13:34:57] [Server thread/INFO]: TheChessMaster[/71.98.197.156:55919] logged in with entity id 4306 at (world, 128, 4, 128) +2015-06-29 [13:34:58] [Server thread/INFO]: DooskeeIsBack left the game +2015-06-29 [13:34:58] [Server thread/INFO]: DooskeeIsBack[/12.238.61.12:56659] logged out due to client disconnect +2015-06-29 [13:34:59] [Server thread/INFO]: Hai! I'm a panda +2015-06-29 [13:35:00] [Server thread/INFO]: TheChessMaster joined the game +2015-06-29 [13:35:13] [Server thread/INFO]: sterling_ left the game +2015-06-29 [13:35:13] [Server thread/INFO]: sterling_[/108.82.94.94:52218] logged out due to client disconnect +2015-06-29 [13:35:14] [Server thread/NOTICE]: Player data not found for "mom", creating new profile +2015-06-29 [13:35:14] [Server thread/INFO]: Mom[/12.238.61.12:58590] logged in with entity id 4338 at (world, 128, 4, 128) +2015-06-29 [13:35:17] [Server thread/INFO]: Mom joined the game +2015-06-29 [13:35:28] [Server thread/INFO]: I MADE COOKIES +2015-06-29 [13:35:28] [Server thread/INFO]: hi mom +2015-06-29 [13:35:34] [Server thread/INFO]: * Adam_TDC is now doing /me +2015-06-29 [13:35:35] [Server thread/NOTICE]: Player data not found for "1milcorruptmpmod", creating new profile +2015-06-29 [13:35:35] [Server thread/INFO]: 1milcorruptmpmod[/70.114.250.112:49750] logged in with entity id 4359 at (world, 128, 4, 128) +2015-06-29 [13:35:38] [Server thread/INFO]: 1milcorruptmpmod joined the game +2015-06-29 [13:35:38] [Server thread/INFO]: Jhurts left the game +2015-06-29 [13:35:38] [Server thread/INFO]: Jhurts[/24.56.188.234:55022] logged out due to timeout +2015-06-29 [13:35:41] [Server thread/INFO]: Mom left the game +2015-06-29 [13:35:41] [Server thread/INFO]: Mom[/12.238.61.12:58590] logged out due to client disconnect +2015-06-29 [13:35:47] [Server thread/INFO]: * TheChessMaster left the game +2015-06-29 [13:35:58] [Server thread/INFO]: * 15Ibans is no longer op +2015-06-29 [13:36:01] [Server thread/INFO]: seems legit +2015-06-29 [13:36:06] [Server thread/INFO]: maukamauka left the game +2015-06-29 [13:36:06] [Server thread/INFO]: maukamauka[/52.6.86.115:57666] logged out due to timeout +2015-06-29 [13:36:07] [Server thread/INFO]: Mom[/12.238.61.12:59798] logged in with entity id 4380 at (world, 123.7126, 4, 128.4796) +2015-06-29 [13:36:10] [Server thread/INFO]: Mom joined the game +2015-06-29 [13:36:14] [Server thread/INFO]: 1milcorruptmpmod left the game +2015-06-29 [13:36:14] [Server thread/INFO]: 1milcorruptmpmod[/70.114.250.112:49750] logged out due to client disconnect +2015-06-29 [13:36:15] [Server thread/INFO]: Byte_[/73.150.143.17:47994] logged in with entity id 4389 at (world, 155.0051, 4, 59.6974) +2015-06-29 [13:36:17] [Server thread/INFO]: <15Ibans> MOMMMMMMMMM +2015-06-29 [13:36:18] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:36:19] [Server thread/INFO]: guys imma go +2015-06-29 [13:36:30] [Server thread/INFO]: farm de trees! +2015-06-29 [13:36:32] [Server thread/INFO]: i got baby pics or 15lbans +2015-06-29 [13:36:35] [Server thread/WARNING]: Mom moved wrongly! +2015-06-29 [13:36:43] [Server thread/INFO]: are we eventually going to have a PE server? +2015-06-29 [13:36:55] [Server thread/NOTICE]: Player data not found for "jecht_", creating new profile +2015-06-29 [13:36:55] [Server thread/INFO]: Jecht_[/108.82.94.94:52339] logged in with entity id 4399 at (world, 128, 4, 128) +2015-06-29 [13:36:57] [Server thread/INFO]: i hope not +2015-06-29 [13:36:58] [Server thread/INFO]: no its your moms server +2015-06-29 [13:36:58] [Server thread/INFO]: Jecht_ joined the game +2015-06-29 [13:36:59] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:36:59] [Server thread/INFO]: Byte_[/73.150.143.17:47994] logged out due to timeout +2015-06-29 [13:36:59] [Server thread/INFO]: idk +2015-06-29 [13:37:06] [Server thread/WARNING]: 15Ibans moved wrongly! +2015-06-29 [13:37:08] [Server thread/INFO]: Mom left the game +2015-06-29 [13:37:08] [Server thread/INFO]: Mom[/12.238.61.12:59798] logged out due to client disconnect +2015-06-29 [13:37:09] [Server thread/INFO]: xPixel left the game +2015-06-29 [13:37:09] [Server thread/INFO]: xPixel[/24.29.95.166:55402] logged out due to timeout +2015-06-29 [13:37:11] [Server thread/INFO]: FARM! +2015-06-29 [13:37:20] [Server thread/INFO]: OMG i have DIRT! +2015-06-29 [13:37:22] [Server thread/INFO]: tbere are trees? +2015-06-29 [13:37:23] [Server thread/WARNING]: Charcoal_Inc moved wrongly! +2015-06-29 [13:37:27] [Server thread/NOTICE]: Player data not found for "illuminati", creating new profile +2015-06-29 [13:37:27] [Server thread/INFO]: Illuminati[/12.238.61.12:55558] logged in with entity id 4405 at (world, 128, 4, 128) +2015-06-29 [13:37:28] [Server thread/INFO]: there +2015-06-29 [13:37:30] [Server thread/INFO]: Illuminati joined the game +2015-06-29 [13:37:40] [Server thread/INFO]: over here +2015-06-29 [13:37:44] [Server thread/INFO]: * Illuminati Loomanaty +2015-06-29 [13:37:44] [Server thread/INFO]: let me organize the trees +2015-06-29 [13:37:45] [Server thread/INFO]: hi Obama...I mean Illuminati +2015-06-29 [13:37:52] [Server thread/INFO]: Jecht_ left the game +2015-06-29 [13:37:52] [Server thread/INFO]: Jecht_[/108.82.94.94:52339] logged out due to client disconnect +2015-06-29 [13:37:57] [Server thread/INFO]: Byte_[/73.150.143.17:35179] logged in with entity id 4412 at (world, 155.0051, 4, 59.6974) +2015-06-29 [13:38:00] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:38:04] [Server thread/INFO]: Chiss[/108.82.94.94:52347] logged in with entity id 4415 at (world, 85.6752, 4, 137.9001) +2015-06-29 [13:38:06] [Server thread/INFO]: boo +2015-06-29 [13:38:07] [Server thread/INFO]: Chiss joined the game +2015-06-29 [13:38:12] [Server thread/INFO]: CC[/70.114.250.112:62280] logged out due to Invalid name! +2015-06-29 [13:38:14] [Server thread/INFO]: meow +2015-06-29 [13:38:19] [Server thread/INFO]: Meow! +2015-06-29 [13:38:20] [Server thread/INFO]: Rawr +2015-06-29 [13:38:24] [Server thread/INFO]: Illuminati left the game +2015-06-29 [13:38:24] [Server thread/INFO]: Illuminati[/12.238.61.12:55558] logged out due to client disconnect +2015-06-29 [13:38:30] [Server thread/INFO]: i need some wood for a door +2015-06-29 [13:38:37] [Server thread/INFO]: continue the tree legacy! +2015-06-29 [13:38:38] [Server thread/NOTICE]: Player data not found for "darthvader", creating new profile +2015-06-29 [13:38:38] [Server thread/INFO]: DarthVader[/12.238.61.12:49318] logged in with entity id 4424 at (world, 128, 4, 128) +2015-06-29 [13:38:38] [Server thread/INFO]: lol using my 50x50 tv to play +2015-06-29 [13:38:41] [Server thread/INFO]: DarthVader joined the game +2015-06-29 [13:38:46] [Server thread/INFO]: 15Ibans left the game +2015-06-29 [13:38:46] [Server thread/INFO]: 15Ibans[/72.91.34.54:48976] logged out due to timeout +2015-06-29 [13:38:50] [Server thread/INFO]: Charcoal_Inc left the game +2015-06-29 [13:38:50] [Server thread/INFO]: Charcoal_Inc[/71.15.82.173:46547] logged out due to client disconnect +2015-06-29 [13:38:51] [Server thread/INFO]: mah dad +2015-06-29 [13:38:53] [Server thread/INFO]: cool chiss :) +2015-06-29 [13:38:56] [Server thread/INFO]: I AM YOUR FATHA +2015-06-29 [13:39:03] [Server thread/INFO]: Dat aspect ratio... 50x50 +2015-06-29 [13:39:07] [Server thread/INFO]: Please mind the caps :P +2015-06-29 [13:39:09] [Server thread/WARNING]: DarthVader moved wrongly! +2015-06-29 [13:39:13] [Server thread/INFO]: Anthony2202[/172.88.60.19:54439] logged in with entity id 4428 at (world, 186.908, 4, 146.022) +2015-06-29 [13:39:14] [Server thread/INFO]: NO +2015-06-29 [13:39:16] [Server thread/INFO]: Pls don't minimmod +2015-06-29 [13:39:17] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:39:18] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:56217] logged in with entity id 4430 at (world, 158.1504, 4, 123.5234) +2015-06-29 [13:39:20] [Server thread/WARNING]: TheChessMaster moved wrongly! +2015-06-29 [13:39:21] [Server thread/INFO]: RosaEpicBeauty joined the game +2015-06-29 [13:39:25] [Server thread/INFO]: tvs are meashred by diagonal bro +2015-06-29 [13:39:32] [Server thread/INFO]: But I'm staff!!!! +2015-06-29 [13:39:34] [Server thread/INFO]: measured +2015-06-29 [13:39:42] [Server thread/WARNING]: TheChessMaster moved wrongly! +2015-06-29 [13:39:42] [Server thread/INFO]: HOW DARE YOU SAY THAT TO A DARK LORD +2015-06-29 [13:39:42] [Server thread/INFO]: Ik :p +2015-06-29 [13:39:44] [Server thread/INFO]: Chess ? +2015-06-29 [13:39:49] [Server thread/INFO]: Hi rosa +2015-06-29 [13:39:55] [Server thread/INFO]: hiii +2015-06-29 [13:39:57] [Server thread/INFO]: biohazard_[/76.16.212.5:61663] logged in with entity id 4455 at (world, 138.5085, 4, 120.5402) +2015-06-29 [13:40:00] [Server thread/INFO]: MIND THE CAPS OMG +2015-06-29 [13:40:01] [Server thread/INFO]: biohazard_ joined the game +2015-06-29 [13:40:04] [Server thread/INFO]: Get out of my house.. +2015-06-29 [13:40:10] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:40:10] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:40:12] [Server thread/INFO]: biohazard_ left the game +2015-06-29 [13:40:12] [Server thread/INFO]: biohazard_[/76.16.212.5:61663] logged out due to client disconnect +2015-06-29 [13:40:15] [Server thread/INFO]: DONT +2015-06-29 [13:40:18] [Server thread/INFO]: e.o +2015-06-29 [13:40:22] [Server thread/WARNING]: TheChessMaster moved wrongly! +2015-06-29 [13:40:23] [Server thread/INFO]: RosaEpicBeauty died +2015-06-29 [13:40:26] [Server thread/INFO]: NEW IP GUYS +2015-06-29 [13:40:28] [Server thread/INFO]: DON'T* +2015-06-29 [13:40:34] [Server thread/INFO]: Chiss left the game +2015-06-29 [13:40:34] [Server thread/INFO]: Chiss[/108.82.94.94:52347] logged out due to client disconnect +2015-06-29 [13:40:40] [Server thread/INFO]: i cannot get in the new one +2015-06-29 [13:40:42] [Server thread/INFO]: 69.175.104.154 +2015-06-29 [13:40:44] [Server thread/INFO]: Dctr[/108.82.94.94:52358] logged in with entity id 4482 at (world, 173.2997, 4, 113.4161) +2015-06-29 [13:40:45] [Server thread/INFO]: RosaEpicBeauty left the game +2015-06-29 [13:40:45] [Server thread/INFO]: RosaEpicBeauty[/71.200.146.29:56217] logged out due to timeout +2015-06-29 [13:40:47] [Server thread/INFO]: Dctr joined the game +2015-06-29 [13:40:48] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:40:48] [Server thread/INFO]: Anthony2202[/172.88.60.19:54439] logged out due to client disconnect +2015-06-29 [13:40:52] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:40:52] [Server thread/INFO]: Byte_[/73.150.143.17:35179] logged out due to client disconnect +2015-06-29 [13:40:54] [Server thread/INFO]: Hey Dctr +2015-06-29 [13:40:56] [Server thread/INFO]: GeckoGamingYT left the game +2015-06-29 [13:40:56] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:64951] logged out due to timeout +2015-06-29 [13:41:04] [Server thread/INFO]: I smell like crap... +2015-06-29 [13:41:14] [Server thread/INFO]: BaconBeanbag left the game +2015-06-29 [13:41:14] [Server thread/INFO]: BaconBeanbag[/86.164.39.162:50282] logged out due to client disconnect +2015-06-29 [13:41:15] [Server thread/INFO]: We know, youre very smelly :P +2015-06-29 [13:41:17] [Server thread/INFO]: true +2015-06-29 [13:41:29] [Server thread/INFO]: maukamauka[/52.6.86.115:50716] logged in with entity id 4502 at (world, 171.8321, 4, 129.0747) +2015-06-29 [13:41:30] [Server thread/INFO]: Byte_[/73.150.143.17:55491] logged in with entity id 4504 at (world, 151.2973, 4, 65.8609) +2015-06-29 [13:41:30] [Server thread/INFO]: *takes out lightsaber*• +2015-06-29 [13:41:32] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [13:41:33] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [13:41:35] [Server thread/INFO]: Anthony2202[/172.88.60.19:61456] logged in with entity id 4508 at (world, 154.0816, 4, 67.4057) +2015-06-29 [13:41:38] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:41:51] [Server thread/INFO]: Why are you people invading my house ;-; +2015-06-29 [13:41:53] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:41:53] [Server thread/INFO]: Adam_TDC[/24.57.12.8:46815] logged out due to client disconnect +2015-06-29 [13:41:54] [Server thread/INFO]: DarthVader left the game +2015-06-29 [13:41:54] [Server thread/INFO]: DarthVader[/12.238.61.12:49318] logged out due to timeout +2015-06-29 [13:42:05] [Server thread/INFO]: edgardme3[/74.194.110.14:44265] logged in with entity id 4539 at (world, 164.2507, 5, 105.9737) +2015-06-29 [13:42:08] [Server thread/INFO]: edgardme3 joined the game +2015-06-29 [13:42:08] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [13:42:08] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:54602] logged out due to client disconnect +2015-06-29 [13:42:32] [Server thread/INFO]: Adam_TDC[/24.57.12.8:52880] logged in with entity id 4551 at (world, 237.769, 4, 115.8958) +2015-06-29 [13:42:35] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:42:44] [Server thread/INFO]: edgardme3 left the game +2015-06-29 [13:42:44] [Server thread/INFO]: edgardme3[/74.194.110.14:44265] logged out due to client disconnect +2015-06-29 [13:42:45] [Server thread/INFO]: millenium200[/65.189.205.183:45379] logged in with entity id 4559 at (world, 229.8375, 75, 383.4427) +2015-06-29 [13:42:46] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:42:46] [Server thread/INFO]: Adam_TDC[/24.57.12.8:52880] logged out due to client disconnect +2015-06-29 [13:42:51] [Server thread/INFO]: millenium200 joined the game +2015-06-29 [13:42:53] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:54050] logged in with entity id 4570 at (world, 141.5645, 8, 183.1133) +2015-06-29 [13:42:56] [Server thread/INFO]: millenium201[/65.189.205.183:49737] logged in with entity id 4575 at (world, 80.4965, 75, 251.8621) +2015-06-29 [13:42:58] [Server thread/INFO]: GeckoGamingYT joined the game +2015-06-29 [13:42:59] [Server thread/INFO]: Ew Dctr smells +2015-06-29 [13:43:01] [Server thread/INFO]: millenium201 joined the game +2015-06-29 [13:43:21] [Server thread/INFO]: I smell beautiful! +2015-06-29 [13:43:34] [Server thread/INFO]: GeckoGamingYT left the game +2015-06-29 [13:43:34] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:54050] logged out due to client disconnect +2015-06-29 [13:43:37] [Server thread/INFO]: Adam_TDC[/24.57.12.8:40681] logged in with entity id 4597 at (world, 241.307, 4, 108.7492) +2015-06-29 [13:43:39] [Server thread/INFO]: Byte_ left the game +2015-06-29 [13:43:39] [Server thread/INFO]: Byte_[/73.150.143.17:55491] logged out due to client disconnect +2015-06-29 [13:43:41] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:43:43] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:43:43] [Server thread/INFO]: Anthony2202[/172.88.60.19:61456] logged out due to client disconnect +2015-06-29 [13:43:49] [Server thread/INFO]: Yes <3 My favorite admin, don't tell +2015-06-29 [13:44:01] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:44:01] [Server thread/INFO]: Adam_TDC[/24.57.12.8:40681] logged out due to client disconnect +2015-06-29 [13:44:14] [Server thread/INFO]: Anthony2202[/172.88.60.19:60717] logged in with entity id 4640 at (world, 156.0517, 4, 78.6903) +2015-06-29 [13:44:18] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:44:19] [Server thread/INFO]: Adam_TDC[/24.57.12.8:42464] logged in with entity id 4642 at (world, 244.3146, 4, 102.3006) +2015-06-29 [13:44:22] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:44:26] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:44:26] [Server thread/INFO]: Adam_TDC[/24.57.12.8:42464] logged out due to client disconnect +2015-06-29 [13:44:35] [Server thread/INFO]: Dctr left the game +2015-06-29 [13:44:35] [Server thread/INFO]: Dctr[/108.82.94.94:52358] logged out due to client disconnect +2015-06-29 [13:44:39] [Server thread/INFO]: Dctr is funny, which is why he's awesome :) +2015-06-29 [13:44:56] [Server thread/NOTICE]: Player data not found for "ass", creating new profile +2015-06-29 [13:44:56] [Server thread/INFO]: Ass[/108.82.94.94:52379] logged in with entity id 4667 at (world, 128, 4, 128) +2015-06-29 [13:44:57] [Server thread/INFO]: TheChessMaster left the game +2015-06-29 [13:44:57] [Server thread/INFO]: TheChessMaster[/71.98.197.156:55919] logged out due to client disconnect +2015-06-29 [13:45:01] [Server thread/INFO]: Ass joined the game +2015-06-29 [13:45:11] [Server thread/INFO]: Uh +2015-06-29 [13:45:38] [Server thread/INFO]: Adam_TDC[/24.57.12.8:34684] logged in with entity id 4675 at (world, 245.6379, 4, 102.7) +2015-06-29 [13:45:39] [Server thread/INFO]: Ass left the game +2015-06-29 [13:45:39] [Server thread/INFO]: Ass[/108.82.94.94:52379] logged out due to client disconnect +2015-06-29 [13:45:41] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:45:43] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:45:43] [Server thread/INFO]: Anthony2202[/172.88.60.19:60717] logged out due to client disconnect +2015-06-29 [13:45:47] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:45:47] [Server thread/INFO]: Adam_TDC[/24.57.12.8:34684] logged out due to client disconnect +2015-06-29 [13:45:50] [Server thread/INFO]: Anthony2202[/172.88.60.19:55298] logged in with entity id 4682 at (world, 187.9096, 4, 132.3215) +2015-06-29 [13:45:50] [Server thread/INFO]: maukamauka left the game +2015-06-29 [13:45:50] [Server thread/INFO]: maukamauka[/52.6.86.115:50716] logged out due to timeout +2015-06-29 [13:45:52] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:46:01] [Server thread/INFO]: ImMovable[/184.163.201.200:55462] logged in with entity id 4692 at (world, 111.1542, 4, 146.7641) +2015-06-29 [13:46:06] [Server thread/INFO]: ImMovable joined the game +2015-06-29 [13:46:34] [Server thread/INFO]: hello +2015-06-29 [13:46:39] [Server thread/INFO]: Hai +2015-06-29 [13:46:53] [Server thread/INFO]: ImMovable left the game +2015-06-29 [13:46:53] [Server thread/INFO]: ImMovable[/184.163.201.200:55462] logged out due to timeout +2015-06-29 [13:47:16] [Server thread/INFO]: TheChessMaster[/71.98.197.156:53814] logged in with entity id 4743 at (world, 231.7018, 4, 93.5258) +2015-06-29 [13:47:20] [Server thread/INFO]: TheChessMaster joined the game +2015-06-29 [13:47:26] [Server thread/INFO]: Adam_TDC[/24.57.12.8:52054] logged in with entity id 4751 at (world, 240.2693, 4, 105.3812) +2015-06-29 [13:47:28] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:49738] logged in with entity id 4754 at (world, 146.8578, 4, 150.0061) +2015-06-29 [13:47:30] [Server thread/INFO]: Adam_TDC joined the game +2015-06-29 [13:47:31] [Server thread/INFO]: Just you and me? +2015-06-29 [13:47:32] [Server thread/INFO]: GeckoGamingYT joined the game +2015-06-29 [13:47:32] [Server thread/INFO]: Hybalt[/68.196.163.172:53962] logged in with entity id 4759 at (world, 148.85, 71, 140.7) +2015-06-29 [13:47:35] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [13:47:36] [Server thread/INFO]: And them +2015-06-29 [13:47:41] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:64924] logged in with entity id 4763 at (world, 172.6443, 101.0244, 133.6846) +2015-06-29 [13:47:44] [Server thread/INFO]: Adam_TDC left the game +2015-06-29 [13:47:44] [Server thread/INFO]: Adam_TDC[/24.57.12.8:52054] logged out due to client disconnect +2015-06-29 [13:47:44] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [13:47:47] [Server thread/WARNING]: GeckoGamingYT moved wrongly! +2015-06-29 [13:47:48] [Server thread/WARNING]: GeckoGamingYT moved wrongly! +2015-06-29 [13:47:52] [Server thread/INFO]: lol hi luke +2015-06-29 [13:47:56] [Server thread/INFO]: i cant get on the other ip +2015-06-29 [13:47:57] [Server thread/INFO]: eyyy +2015-06-29 [13:48:02] [Server thread/INFO]: Me neither +2015-06-29 [13:48:15] [Server thread/INFO]: i want clanz +2015-06-29 [13:48:23] [Server thread/WARNING]: Hybalt moved wrongly! +2015-06-29 [13:48:27] [Server thread/INFO]: CLANZZ?! +2015-06-29 [13:48:31] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [13:48:31] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:64924] logged out due to client disconnect +2015-06-29 [13:49:05] [Server thread/WARNING]: TheChessMaster moved wrongly! +2015-06-29 [13:49:09] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:49:10] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:49:21] [Server thread/INFO]: TheChessMaster suffocated in a wall +2015-06-29 [13:49:24] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:49:28] [Server thread/INFO]: Anthony2202 suffocated in a wall +2015-06-29 [13:49:35] [Server thread/INFO]: * TheChessMaster was slain by Herobrine +2015-06-29 [13:49:43] [Server thread/INFO]: Hybalt left the game +2015-06-29 [13:49:43] [Server thread/INFO]: Hybalt[/68.196.163.172:53962] logged out due to client disconnect +2015-06-29 [13:49:47] [Server thread/INFO]: * Anthony2202 was slain by Anthony2202 +2015-06-29 [13:49:53] [Server thread/INFO]: * pikachomp is not amused +2015-06-29 [13:50:07] [Server thread/INFO]: * Anthony2202 thinks pikachomp is weird +2015-06-29 [13:50:11] [Server thread/INFO]: * TheChessMaster ate pikachomp +2015-06-29 [13:50:22] [Server thread/INFO]: TheChessMaster suffocated in a wall +2015-06-29 [13:50:22] [Server thread/INFO]: * pikachomp cries +2015-06-29 [13:50:29] [Server thread/INFO]: * Anthony2202 laughs +2015-06-29 [13:50:59] [Server thread/INFO]: mikelikesmuffins left the game +2015-06-29 [13:50:59] [Server thread/INFO]: mikelikesmuffins[/76.117.41.56:61123] logged out due to timeout +2015-06-29 [13:51:04] [Server thread/INFO]: ... +2015-06-29 [13:51:04] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:51:04] [Server thread/INFO]: Anthony2202[/172.88.60.19:55298] logged out due to client disconnect +2015-06-29 [13:51:10] [Server thread/INFO]: Anthony2202[/172.88.60.19:51512] logged in with entity id 4866 at (world, 182.6982, 4, 118.8253) +2015-06-29 [13:51:13] [Server thread/INFO]: Anthony2202 joined the game +2015-06-29 [13:51:16] [Server thread/INFO]: what did you do gecko? +2015-06-29 [13:51:33] [Server thread/INFO]: ? +2015-06-29 [13:51:39] [Server thread/INFO]: millenium201 left the game +2015-06-29 [13:51:39] [Server thread/INFO]: millenium201[/65.189.205.183:49737] logged out due to client disconnect +2015-06-29 [13:51:40] [Server thread/INFO]: i was chopping wood +2015-06-29 [13:51:44] [Server thread/INFO]: millenium200 left the game +2015-06-29 [13:51:44] [Server thread/INFO]: millenium200[/65.189.205.183:45379] logged out due to client disconnect +2015-06-29 [13:52:00] [Server thread/INFO]: TheChessMaster left the game +2015-06-29 [13:52:00] [Server thread/INFO]: TheChessMaster[/71.98.197.156:53814] logged out due to client disconnect +2015-06-29 [13:52:08] [Server thread/WARNING]: Anthony2202 moved wrongly! +2015-06-29 [13:52:09] [Server thread/INFO]: wth how did you +2015-06-29 [13:52:36] [Server thread/INFO]: My dirt house ;-; +2015-06-29 [13:53:03] [Server thread/INFO]: pikachomp left the game +2015-06-29 [13:53:03] [Server thread/INFO]: pikachomp[/108.20.187.165:52696] logged out due to client disconnect +2015-06-29 [13:53:06] [Server thread/INFO]: Anthony2202 left the game +2015-06-29 [13:53:06] [Server thread/INFO]: Anthony2202[/172.88.60.19:51512] logged out due to client disconnect +2015-06-29 [13:53:10] [Server thread/NOTICE]: Player data not found for "kingsamxx", creating new profile +2015-06-29 [13:53:10] [Server thread/INFO]: Kingsamxx[/199.126.23.141:62213] logged in with entity id 4904 at (world, 128, 4, 128) +2015-06-29 [13:53:14] [Server thread/INFO]: Kingsamxx joined the game +2015-06-29 [13:53:27] [Server thread/INFO]: hi +2015-06-29 [13:53:38] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:64441] logged in with entity id 4906 at (world, 138.562, 69, 60.0612) +2015-06-29 [13:53:42] [Server thread/INFO]: Bro_Yoshi joined the game +2015-06-29 [13:53:48] [Server thread/INFO]: Bro_Yoshi left the game +2015-06-29 [13:53:48] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:64441] logged out due to client disconnect +2015-06-29 [13:53:51] [Server thread/INFO]: whats going om here? +2015-06-29 [13:53:53] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:57696] logged in with entity id 4907 at (world, 138.562, 4, 60.0612) +2015-06-29 [13:53:56] [Server thread/INFO]: Bro_Yoshi joined the game +2015-06-29 [13:54:15] [Server thread/NOTICE]: Player data not found for "senpaisensible", creating new profile +2015-06-29 [13:54:15] [Server thread/INFO]: SenpaiSensible[/108.29.45.239:65057] logged in with entity id 4910 at (world, 128, 4, 128) +2015-06-29 [13:54:19] [Server thread/INFO]: SenpaiSensible joined the game +2015-06-29 [13:55:31] [Server thread/INFO]: Kingsamxx left the game +2015-06-29 [13:55:31] [Server thread/INFO]: Kingsamxx[/199.126.23.141:62213] logged out due to client disconnect +2015-06-29 [13:56:18] [Server thread/INFO]: Why do I have wood? +2015-06-29 [13:56:29] [Server thread/INFO]: hacker +2015-06-29 [13:56:54] [Server thread/INFO]: RedXTech[/68.146.88.146:48498] logged in with entity id 4950 at (world, 155.8155, 9, 133.7) +2015-06-29 [13:56:58] [Server thread/INFO]: RedXTech joined the game +2015-06-29 [13:56:58] [Server thread/INFO]: Am not, i spawned with it +2015-06-29 [13:56:59] [Server thread/INFO]: StarRocket[/70.56.27.182:40465] logged in with entity id 4954 at (world, 148.7901, 4, 122.373) +2015-06-29 [13:57:02] [Server thread/INFO]: StarRocket joined the game +2015-06-29 [13:57:08] [Server thread/INFO]: GeckoGamingYT left the game +2015-06-29 [13:57:08] [Server thread/INFO]: GeckoGamingYT[/66.30.131.75:49738] logged out due to timeout +2015-06-29 [13:57:10] [Server thread/INFO]: StarRocket fell out of the world +2015-06-29 [13:57:37] [Server thread/INFO]: RedXTech left the game +2015-06-29 [13:57:37] [Server thread/INFO]: RedXTech[/68.146.88.146:48498] logged out due to timeout +2015-06-29 [13:57:45] [Server thread/INFO]: RedXTech[/68.146.88.146:47571] logged in with entity id 4960 at (world, 155.7697, 9, 133.9109) +2015-06-29 [13:57:48] [Server thread/INFO]: RedXTech joined the game +2015-06-29 [13:58:06] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [13:58:09] [Server thread/INFO]: Bro_Yoshi fell out of the world +2015-06-29 [13:58:21] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [13:58:46] [Server thread/WARNING]: StarRocket moved wrongly! +2015-06-29 [13:59:09] [Server thread/INFO]: StarRocket left the game +2015-06-29 [13:59:09] [Server thread/INFO]: StarRocket[/70.56.27.182:40465] logged out due to client disconnect +2015-06-29 [13:59:24] [Server thread/INFO]: RedXTech left the game +2015-06-29 [13:59:24] [Server thread/INFO]: RedXTech[/68.146.88.146:47571] logged out due to client disconnect +2015-06-29 [13:59:38] [Server thread/INFO]: Hybalt[/68.196.163.172:61452] logged in with entity id 4991 at (world, 188.3, 3, 131.7) +2015-06-29 [13:59:42] [Server thread/INFO]: Hybalt joined the game +2015-06-29 [14:00:04] [Server thread/INFO]: SenpaiSensible left the game +2015-06-29 [14:00:04] [Server thread/INFO]: SenpaiSensible[/108.29.45.239:65057] logged out due to client disconnect +2015-06-29 [14:00:17] [Server thread/INFO]: Hybalt left the game +2015-06-29 [14:00:17] [Server thread/INFO]: Hybalt[/68.196.163.172:61452] logged out due to client disconnect +2015-06-29 [14:00:22] [Server thread/NOTICE]: Player data not found for "fertileturtle88", creating new profile +2015-06-29 [14:00:22] [Server thread/INFO]: fertileturtle88[/73.48.132.233:38102] logged in with entity id 5005 at (world, 128, 4, 128) +2015-06-29 [14:00:25] [Server thread/INFO]: fertileturtle88 joined the game +2015-06-29 [14:00:43] [Server thread/INFO]: Byte_[/73.150.143.17:60997] logged in with entity id 5013 at (world, 162.9256, 4.3, 111.3313) +2015-06-29 [14:00:46] [Server thread/INFO]: Byte_ joined the game +2015-06-29 [14:00:54] [Server thread/INFO]: hiya c: +2015-06-29 [14:00:54] [Server thread/INFO]: Byte_ left the game +2015-06-29 [14:00:54] [Server thread/INFO]: Byte_[/73.150.143.17:60997] logged out due to client disconnect +2015-06-29 [14:01:04] [Server thread/INFO]: Herlo +2015-06-29 [14:01:51] [Server thread/NOTICE]: Player data not found for "jcsh", creating new profile +2015-06-29 [14:01:51] [Server thread/INFO]: Jcsh[/74.178.233.117:59567] logged in with entity id 5018 at (world, 128, 4, 128) +2015-06-29 [14:01:54] [Server thread/INFO]: Jcsh joined the game +2015-06-29 [14:02:21] [Server thread/INFO]: Hello? +2015-06-29 [14:02:29] [Server thread/INFO]: yo +2015-06-29 [14:02:36] [Server thread/INFO]: Sup +2015-06-29 [14:02:44] [Server thread/INFO]: i havent played PE in sooo long lol +2015-06-29 [14:02:53] [Server thread/INFO]: ^ +2015-06-29 [14:03:09] [Server thread/INFO]: epicbluej[/173.20.33.223:58100] logged out due to Outdated client! +2015-06-29 [14:03:17] [Server thread/INFO]: Oh, hey Snowball. +2015-06-29 [14:04:39] [Server thread/WARNING]: fertileturtle88 moved wrongly! +2015-06-29 [14:04:50] [Server thread/INFO]: maukamauka[/52.6.86.115:62744] logged in with entity id 5048 at (world, 234.9965, 4, 106.3445) +2015-06-29 [14:04:53] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [14:04:59] [Server thread/INFO]: maukamauka left the game +2015-06-29 [14:04:59] [Server thread/INFO]: maukamauka[/52.6.86.115:62744] logged out due to client disconnect +2015-06-29 [14:05:14] [Server thread/INFO]: defek7[/108.82.94.94:52785] logged in with entity id 5055 at (world, 115.029, 4, 202.2715) +2015-06-29 [14:05:19] [Server thread/INFO]: maukamauka[/52.6.86.115:53916] logged in with entity id 5056 at (world, 234.9965, 4, 106.3445) +2015-06-29 [14:05:19] [Server thread/INFO]: defek7 joined the game +2015-06-29 [14:05:22] [Server thread/INFO]: maukamauka joined the game +2015-06-29 [14:05:25] [Server thread/INFO]: maukamauka left the game +2015-06-29 [14:05:25] [Server thread/INFO]: maukamauka[/52.6.86.115:53916] logged out due to client disconnect +2015-06-29 [14:05:30] [Server thread/INFO]: Hey defek! +2015-06-29 [14:05:31] [Server thread/INFO]: so... what should we do? +2015-06-29 [14:05:46] [Server thread/INFO]: Defek! +2015-06-29 [14:05:52] [Server thread/INFO]: Idk, lick each other! +2015-06-29 [14:06:11] [Server thread/INFO]: cool, im down +2015-06-29 [14:06:16] [Server thread/INFO]: My life is complete +2015-06-29 [14:06:17] [Server thread/WARNING]: defek7 moved wrongly! +2015-06-29 [14:06:19] [Server thread/INFO]: Is this the real guy? +2015-06-29 [14:06:27] [Server thread/INFO]: yoshi cmere +2015-06-29 [14:06:34] [Server thread/INFO]: wht +2015-06-29 [14:06:38] [Server thread/INFO]: Yes, I am level 100 in Mineplex. +2015-06-29 [14:06:48] [Server thread/INFO]: Snowballcps left the game +2015-06-29 [14:06:49] [Server thread/INFO]: Snowballcps[/98.178.137.183:52178] logged out due to timeout +2015-06-29 [14:06:50] [Server thread/INFO]: defek said to lick +2015-06-29 [14:06:56] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:07:02] [Server thread/INFO]: You are one of the three Owners. +2015-06-29 [14:07:08] [Server thread/INFO]: Just bury then with dirt. +2015-06-29 [14:07:25] [Server thread/INFO]: And trap yourself with another person. +2015-06-29 [14:07:34] [Server thread/INFO]: Who wants to do it with me? +2015-06-29 [14:07:44] [Server thread/INFO]: me c: +2015-06-29 [14:07:50] [Server thread/INFO]: ok +2015-06-29 [14:07:56] [Server thread/NOTICE]: Player data not found for "glotuition", creating new profile +2015-06-29 [14:07:56] [Server thread/INFO]: glotuition[/96.233.102.62:58146] logged in with entity id 5092 at (world, 128, 4, 128) +2015-06-29 [14:07:59] [Server thread/INFO]: Is this guy a fake? +2015-06-29 [14:08:00] [Server thread/INFO]: glotuition joined the game +2015-06-29 [14:08:03] [Server thread/INFO]: dont move +2015-06-29 [14:08:09] [Server thread/INFO]: Probably +2015-06-29 [14:08:14] [Server thread/INFO]: alright +2015-06-29 [14:08:22] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:23] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:24] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:26] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:27] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:27] [Server thread/INFO]: Nope, I'm a hacker!!! +2015-06-29 [14:08:30] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:31] [Server thread/INFO]: k +2015-06-29 [14:08:32] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:32] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:33] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:33] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:34] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:34] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:40] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:08:57] [Server thread/INFO]: xKatelyn[/115.188.65.32:61180] logged in with entity id 5094 at (world, 177.3, 73.0192, 101.3) +2015-06-29 [14:09:01] [Server thread/INFO]: xKatelyn joined the game +2015-06-29 [14:09:08] [Server thread/INFO]: Jcsh left the game +2015-06-29 [14:09:08] [Server thread/INFO]: Jcsh[/74.178.233.117:59567] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:09:09] [Server thread/INFO]: I need to lick Chiss and sterling_, bye! +2015-06-29 [14:09:11] [Server thread/INFO]: xKatelyn left the game +2015-06-29 [14:09:11] [Server thread/INFO]: xKatelyn[/115.188.65.32:61180] logged out due to timeout +2015-06-29 [14:09:17] [Server thread/WARNING]: glotuition moved wrongly! +2015-06-29 [14:09:22] [Server thread/INFO]: wtf +2015-06-29 [14:09:24] [Server thread/INFO]: Jcsh[/74.178.233.117:44653] logged in with entity id 5097 at (world, 172.618, 4, 99.8129) +2015-06-29 [14:09:24] [Server thread/INFO]: defek7 left the game +2015-06-29 [14:09:24] [Server thread/INFO]: defek7[/108.82.94.94:52785] logged out due to client disconnect +2015-06-29 [14:09:27] [Server thread/INFO]: Jcsh joined the game +2015-06-29 [14:09:32] [Server thread/INFO]: Jcsh left the game +2015-06-29 [14:09:32] [Server thread/INFO]: Jcsh[/74.178.233.117:44653] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:09:33] [Server thread/INFO]: Lol +2015-06-29 [14:09:41] [Server thread/INFO]: Jcsh[/74.178.233.117:37600] logged in with entity id 5099 at (world, 172.618, 4, 99.8129) +2015-06-29 [14:09:41] [Server thread/WARNING]: glotuition moved wrongly! +2015-06-29 [14:09:41] [Server thread/INFO]: im done lol +2015-06-29 [14:09:44] [Server thread/INFO]: Jcsh joined the game +2015-06-29 [14:09:56] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:09:59] [Server thread/INFO]: I keep on crashing.. +2015-06-29 [14:10:00] [Server thread/NOTICE]: Player data not found for "blairboys12", creating new profile +2015-06-29 [14:10:00] [Server thread/INFO]: Blairboys12[/104.178.179.9:50980] logged in with entity id 5101 at (world, 128, 4, 128) +2015-06-29 [14:10:03] [Server thread/INFO]: Blairboys12 joined the game +2015-06-29 [14:10:07] [Server thread/INFO]: i cri +2015-06-29 [14:10:11] [Server thread/INFO]: Kicked for flying? +2015-06-29 [14:10:13] [Server thread/INFO]: is there any proof this is real +2015-06-29 [14:10:21] [Server thread/INFO]: except for the usernames +2015-06-29 [14:10:33] [Server thread/INFO]: Idk +2015-06-29 [14:10:37] [Server thread/INFO]: But this is survival mode.. +2015-06-29 [14:10:47] [Server thread/INFO]: well can you prove were real? +2015-06-29 [14:10:49] [Server thread/INFO]: what do we do? +2015-06-29 [14:10:54] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:10:56] [Server thread/INFO]: he did tp me tho +2015-06-29 [14:11:03] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:59680] logged in with entity id 5104 at (world, 171.7221, 4, 135.8575) +2015-06-29 [14:11:06] [Server thread/INFO]: LukeSkywalker joined the game +2015-06-29 [14:11:12] [Server thread/INFO]: so he has some kind of power +2015-06-29 [14:11:18] [Server thread/INFO]: Luke? +2015-06-29 [14:11:26] [Server thread/INFO]: jcsh! +2015-06-29 [14:11:42] [Server thread/INFO]: I had to see for myself. +2015-06-29 [14:11:51] [Server thread/INFO]: theyre really making a pe server +2015-06-29 [14:11:53] [Server thread/INFO]: ? +2015-06-29 [14:12:03] [Server thread/INFO]: I don't know. +2015-06-29 [14:12:04] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:12:04] [Server thread/INFO]: Steve[/108.21.225.118:45710] logged in with entity id 5114 at (world, 144.7498, 73, 113.1929) +2015-06-29 [14:12:06] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:12:07] [Server thread/INFO]: Steve joined the game +2015-06-29 [14:12:10] [Server thread/INFO]: honest,y i doubt it +2015-06-29 [14:12:11] [Server thread/INFO]: Blairboys12 died +2015-06-29 [14:12:17] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:12:21] [Server thread/INFO]: theres a 2nd ip +2015-06-29 [14:12:24] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:12:27] [Server thread/INFO]: xFlare_[/108.173.172.41:51875] logged out due to You are banned +2015-06-29 [14:12:27] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:12:27] [Server thread/INFO]: i cant imagine this place with even a 100 people tbh +2015-06-29 [14:12:29] [Server thread/INFO]: lol +2015-06-29 [14:12:32] [Server thread/INFO]: Which is? +2015-06-29 [14:12:38] [Server thread/INFO]: idk +2015-06-29 [14:12:39] [Server thread/INFO]: ? +2015-06-29 [14:12:40] [Server thread/INFO]: xd +2015-06-29 [14:12:43] [Server thread/INFO]: LukeSkywalker left the game +2015-06-29 [14:12:43] [Server thread/INFO]: LukeSkywalker[/191.184.98.171:59680] logged out due to client disconnect +2015-06-29 [14:12:46] [Server thread/INFO]: glotuition left the game +2015-06-29 [14:12:46] [Server thread/INFO]: glotuition[/96.233.102.62:58146] logged out due to client disconnect +2015-06-29 [14:12:53] [Server thread/INFO]: Steve fell from a high place +2015-06-29 [14:13:04] [Server thread/INFO]: Blairboys12 died +2015-06-29 [14:13:53] [Server thread/INFO]: Blairboys12 left the game +2015-06-29 [14:13:53] [Server thread/INFO]: Blairboys12[/104.178.179.9:50980] logged out due to timeout +2015-06-29 [14:14:12] [Server thread/INFO]: fertileturtle88 left the game +2015-06-29 [14:14:12] [Server thread/INFO]: fertileturtle88[/73.48.132.233:38102] logged out due to client disconnect +2015-06-29 [14:14:19] [Server thread/INFO]: Steve left the game +2015-06-29 [14:14:19] [Server thread/INFO]: Steve[/108.21.225.118:45710] logged out due to client disconnect +2015-06-29 [14:14:39] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:14:48] [Server thread/NOTICE]: Player data not found for "greenflame3", creating new profile +2015-06-29 [14:14:48] [Server thread/INFO]: GreenFlame3[/108.21.225.118:50271] logged in with entity id 5143 at (world, 128, 4, 128) +2015-06-29 [14:14:52] [Server thread/INFO]: GreenFlame3 joined the game +2015-06-29 [14:15:07] [Server thread/INFO]: so what is this server for? +2015-06-29 [14:15:18] [Server thread/WARNING]: Jcsh moved wrongly! +2015-06-29 [14:15:41] [Server thread/INFO]: eh +2015-06-29 [14:15:44] [Server thread/INFO]: bored +2015-06-29 [14:15:48] [Server thread/INFO]: GreenFlame3 left the game +2015-06-29 [14:15:48] [Server thread/INFO]: GreenFlame3[/108.21.225.118:50271] logged out due to client disconnect +2015-06-29 [14:16:21] [Server thread/INFO]: Bro_Yoshi fell from a high place +2015-06-29 [14:16:27] [Server thread/INFO]: Jcsh left the game +2015-06-29 [14:16:27] [Server thread/INFO]: Jcsh[/74.178.233.117:37600] logged out due to client disconnect +2015-06-29 [14:16:42] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:16:43] [Server thread/WARNING]: Bro_Yoshi moved wrongly! +2015-06-29 [14:16:56] [Server thread/INFO]: CC[/70.114.250.112:62254] logged out due to Invalid name! +2015-06-29 [14:17:13] [Server thread/NOTICE]: Player data not found for "emerald_shy", creating new profile +2015-06-29 [14:17:13] [Server thread/INFO]: emerald_shy[/99.180.99.35:42155] logged in with entity id 5172 at (world, 128, 4, 128) +2015-06-29 [14:17:17] [Server thread/INFO]: emerald_shy joined the game +2015-06-29 [14:17:20] [Server thread/NOTICE]: Player data not found for "caleb_wolfheart", creating new profile +2015-06-29 [14:17:20] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:55443] logged in with entity id 5173 at (world, 128, 4, 128) +2015-06-29 [14:17:23] [Server thread/INFO]: Caleb_Wolfheart joined the game +2015-06-29 [14:17:43] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:43] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:52] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:52] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:54] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:56] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:56] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:17:57] [Server thread/INFO]: Steve[/100.9.218.107:55464] logged in with entity id 5175 at (world, 179.9359, 4, 107.3307) +2015-06-29 [14:17:57] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:18:00] [Server thread/INFO]: Steve joined the game +2015-06-29 [14:18:10] [Server thread/INFO]: Steve left the game +2015-06-29 [14:18:10] [Server thread/INFO]: Steve[/100.9.218.107:55464] logged out due to client disconnect +2015-06-29 [14:18:30] [Server thread/INFO]: Bai ppls +2015-06-29 [14:18:33] [Server thread/INFO]: Bro_Yoshi left the game +2015-06-29 [14:18:33] [Server thread/INFO]: Bro_Yoshi[/98.220.138.6:57696] logged out due to client disconnect +2015-06-29 [14:18:44] [Server thread/INFO]: anyone else find out about this on the forums? +2015-06-29 [14:18:54] [Server thread/INFO]: yes +2015-06-29 [14:19:03] [Server thread/INFO]: its not real though +2015-06-29 [14:19:16] [Server thread/INFO]: thought so +2015-06-29 [14:19:32] [Server thread/INFO]: emerald_shy left the game +2015-06-29 [14:19:32] [Server thread/INFO]: emerald_shy[/99.180.99.35:42155] logged out due to client disconnect +2015-06-29 [14:19:44] [Server thread/NOTICE]: Player data not found for "veks", creating new profile +2015-06-29 [14:19:44] [Server thread/INFO]: Veks[/72.66.26.95:43355] logged in with entity id 5205 at (world, 128, 4, 128) +2015-06-29 [14:19:48] [Server thread/INFO]: Veks joined the game +2015-06-29 [14:19:50] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:19:52] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:19:52] [Server thread/INFO]: xKatelyn[/115.188.65.32:61616] logged in with entity id 5206 at (world, 177.3, 4, 101.3) +2015-06-29 [14:19:55] [Server thread/INFO]: xKatelyn joined the game +2015-06-29 [14:19:57] [Server thread/INFO]: 15Ibans[/72.91.34.54:58795] logged in with entity id 5207 at (world, 209.8348, 4, 88.3006) +2015-06-29 [14:19:59] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:19:59] [Server thread/NOTICE]: Player data not found for "superprinny", creating new profile +2015-06-29 [14:19:59] [Server thread/INFO]: SuperPrinny[/142.129.79.239:37023] logged in with entity id 5208 at (world, 128, 4, 128) +2015-06-29 [14:19:59] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:20:00] [Server thread/WARNING]: Veks moved wrongly! +2015-06-29 [14:20:00] [Server thread/INFO]: 15Ibans joined the game +2015-06-29 [14:20:02] [Server thread/INFO]: SuperPrinny joined the game +2015-06-29 [14:20:03] [Server thread/INFO]: heg +2015-06-29 [14:20:09] [Server thread/INFO]: hi xd +2015-06-29 [14:20:11] [Server thread/INFO]: <15Ibans> e +2015-06-29 [14:20:13] [Server thread/INFO]: 15Ibans left the game +2015-06-29 [14:20:13] [Server thread/INFO]: 15Ibans[/72.91.34.54:58795] logged out due to client disconnect +2015-06-29 [14:20:14] [Server thread/INFO]: laggy af +2015-06-29 [14:20:15] [Server thread/INFO]: xKatelyn left the game +2015-06-29 [14:20:15] [Server thread/INFO]: xKatelyn[/115.188.65.32:61616] logged out due to client disconnect +2015-06-29 [14:20:17] [Server thread/INFO]: this is fake +2015-06-29 [14:20:17] [Server thread/INFO]: xKatelyn[/115.188.65.32:64479] logged in with entity id 5209 at (world, 177.3, 1, 101.3) +2015-06-29 [14:20:20] [Server thread/INFO]: xKatelyn joined the game +2015-06-29 [14:20:26] [Server thread/INFO]: SuperPrinny left the game +2015-06-29 [14:20:26] [Server thread/INFO]: SuperPrinny[/142.129.79.239:37023] logged out due to client disconnect +2015-06-29 [14:20:28] [Server thread/INFO]: its fake +2015-06-29 [14:20:28] [Server thread/INFO]: it is prob fake +2015-06-29 [14:20:35] [Server thread/INFO]: Veks left the game +2015-06-29 [14:20:35] [Server thread/INFO]: Veks[/72.66.26.95:43355] logged out due to client disconnect +2015-06-29 [14:20:48] [Server thread/INFO]: Fungames300[/68.82.64.189:39776] logged in with entity id 5210 at (world, 167.7779, 78, 133.8164) +2015-06-29 [14:20:48] [Server thread/INFO]: xKatelyn left the game +2015-06-29 [14:20:48] [Server thread/INFO]: xKatelyn[/115.188.65.32:64479] logged out due to client disconnect +2015-06-29 [14:20:51] [Server thread/INFO]: Fungames300 joined the game +2015-06-29 [14:20:55] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:20:57] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:20:59] [Server thread/INFO]: Caleb_Wolfheart suffocated in a wall +2015-06-29 [14:21:05] [Server thread/NOTICE]: Player data not found for "swordsman", creating new profile +2015-06-29 [14:21:05] [Server thread/INFO]: Swordsman[/100.9.218.107:59407] logged in with entity id 5213 at (world, 128, 4, 128) +2015-06-29 [14:21:08] [Server thread/INFO]: Swordsman joined the game +2015-06-29 [14:21:15] [Server thread/INFO]: Swordsman left the game +2015-06-29 [14:21:15] [Server thread/INFO]: Swordsman[/100.9.218.107:59407] logged out due to client disconnect +2015-06-29 [14:21:18] [Server thread/INFO]: hey again swords +2015-06-29 [14:21:28] [Server thread/NOTICE]: Player data not found for "ace", creating new profile +2015-06-29 [14:21:28] [Server thread/INFO]: Ace[/100.9.218.107:64713] logged in with entity id 5214 at (world, 128, 4, 128) +2015-06-29 [14:21:31] [Server thread/INFO]: Ace joined the game +2015-06-29 [14:21:40] [Server thread/INFO]: hey ace +2015-06-29 [14:21:41] [Server thread/INFO]: Caleb_Wolfheart left the game +2015-06-29 [14:21:41] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:55443] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:21:43] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:21:43] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:21:45] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:21:49] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:56544] logged in with entity id 5215 at (world, 172.3885, 4, 105.8921) +2015-06-29 [14:21:52] [Server thread/INFO]: Caleb_Wolfheart joined the game +2015-06-29 [14:21:56] [Server thread/INFO]: Hey +2015-06-29 [14:22:03] [Server thread/INFO]: i was just kicked xD +2015-06-29 [14:22:10] [Server thread/INFO]: you the real ace? +2015-06-29 [14:22:15] [Server thread/INFO]: I keep getting hurt +2015-06-29 [14:22:21] [Server thread/INFO]: same +2015-06-29 [14:22:23] [Server thread/INFO]: Ace as in mineplex username? +2015-06-29 [14:22:26] [Server thread/INFO]: hi +2015-06-29 [14:22:28] [Server thread/INFO]: yes +2015-06-29 [14:22:31] [Server thread/NOTICE]: Player data not found for "b_r_a_d", creating new profile +2015-06-29 [14:22:31] [Server thread/INFO]: B_R_A_D[/68.211.4.3:51964] logged in with entity id 5220 at (world, 128, 4, 128) +2015-06-29 [14:22:34] [Server thread/INFO]: B_R_A_D joined the game +2015-06-29 [14:22:37] [Server thread/WARNING]: Fungames300 moved wrongly! +2015-06-29 [14:22:39] [Server thread/INFO]: He's my brother, I'm Swordsman. +2015-06-29 [14:22:44] [Server thread/WARNING]: Fungames300 moved wrongly! +2015-06-29 [14:22:44] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:22:47] [Server thread/INFO]: I just took his name :) +2015-06-29 [14:22:48] [Server thread/INFO]: oh +2015-06-29 [14:22:50] [Server thread/INFO]: Caleb_Wolfheart left the game +2015-06-29 [14:22:50] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:56544] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:22:50] [Server thread/WARNING]: Fungames300 moved wrongly! +2015-06-29 [14:22:52] [Server thread/WARNING]: Fungames300 moved wrongly! +2015-06-29 [14:22:54] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:56024] logged in with entity id 5221 at (world, 167.7676, 4.0077, 121.8166) +2015-06-29 [14:22:57] [Server thread/INFO]: Caleb_Wolfheart joined the game +2015-06-29 [14:23:01] [Server thread/INFO]: So is this really something Chiss is trying to start? +2015-06-29 [14:23:04] [Server thread/INFO]: bswardx[/220.245.130.194:51101] logged in with entity id 5222 at (world, 163.5341, 1, 108.7) +2015-06-29 [14:23:06] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:23:07] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:23:07] [Server thread/INFO]: bswardx joined the game +2015-06-29 [14:23:09] [Server thread/INFO]: fake chiss +2015-06-29 [14:23:12] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:23:13] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:23:18] [Server thread/INFO]: or is this something a random player made? XD +2015-06-29 [14:23:24] [Server thread/INFO]: yup +2015-06-29 [14:23:25] [Server thread/INFO]: Brb +2015-06-29 [14:23:25] [Server thread/INFO]: Caleb_Wolfheart left the game +2015-06-29 [14:23:25] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:56024] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:23:28] [Server thread/INFO]: xd +2015-06-29 [14:23:29] [Server thread/INFO]: Caleb_Wolfheart[/70.114.250.112:62830] logged in with entity id 5223 at (world, 167.6923, 4, 105.865) +2015-06-29 [14:23:32] [Server thread/INFO]: Caleb_Wolfheart joined the game +2015-06-29 [14:23:38] [Server thread/INFO]: €i still luv it tho +2015-06-29 [14:23:51] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:23:52] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:23:53] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:23:59] [Server thread/INFO]: why cant I build? +2015-06-29 [14:24:00] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:24:02] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:24:02] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:24:09] [Server thread/WARNING]: Ace moved wrongly! +2015-06-29 [14:24:11] [Server thread/INFO]: nvmm +2015-06-29 [14:24:16] [Server thread/INFO]: someone is fucking with us right now +2015-06-29 [14:24:23] [Server thread/INFO]: ikr xd +2015-06-29 [14:24:23] [Server thread/INFO]: Why am I getting hurt +2015-06-29 [14:24:24] [Server thread/INFO]: B_R_A_D left the game +2015-06-29 [14:24:24] [Server thread/INFO]: B_R_A_D[/68.211.4.3:51964] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:24:29] [Server thread/INFO]: bswardx left the game +2015-06-29 [14:24:29] [Server thread/INFO]: bswardx[/220.245.130.194:51101] logged out due to client disconnect +2015-06-29 [14:24:30] [Server thread/INFO]: idk +2015-06-29 [14:24:31] [Server thread/INFO]: B_R_A_D[/68.211.4.3:52547] logged in with entity id 5226 at (world, 161.4628, 4.0192, 126.2904) +2015-06-29 [14:24:35] [Server thread/INFO]: B_R_A_D joined the game +2015-06-29 [14:24:40] [Server thread/INFO]: B_R_A_D left the game +2015-06-29 [14:24:40] [Server thread/INFO]: B_R_A_D[/68.211.4.3:52547] logged out due to Kicked by admin. Reason: Flying is not enabled on this server +2015-06-29 [14:24:44] [Server thread/INFO]: B_R_A_D[/68.211.4.3:57462] logged in with entity id 5227 at (world, 161.4628, 4.0192, 126.2904) +2015-06-29 [14:24:47] [Server thread/INFO]: B_R_A_D joined the game +2015-06-29 [14:24:48] [Server thread/INFO]: Fungames300 left the game +2015-06-29 [14:24:48] [Server thread/INFO]: Fungames300[/68.82.64.189:39776] logged out due to client disconnect +2015-06-29 [14:24:51] [Server thread/INFO]: STOP +2015-06-29 [14:24:57] [Server thread/INFO]: I KEEP GETTING KICKED +2015-06-29 [14:25:02] [Server thread/INFO]: same +2015-06-29 [14:25:08] [Server thread/INFO]: omg +2015-06-29 [14:25:13] [Server thread/INFO]: fake Mineplex +2015-06-29 [14:25:33] [Server thread/INFO]: Sirbird said that there would be a mineplex pe +2015-06-29 [14:25:37] [Server thread/INFO]: This isn't fake, this all came up in game +2015-06-29 [14:25:45] [Server thread/INFO]: How do you know? +2015-06-29 [14:25:49] [Server thread/INFO]: what do you mean? +2015-06-29 [14:25:55] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:26:39] [Server thread/INFO]: Ace left the game +2015-06-29 [14:26:39] [Server thread/INFO]: Ace[/100.9.218.107:64713] logged out due to timeout +2015-06-29 [14:26:40] [Server thread/INFO]: B_R_A_D died +2015-06-29 [14:27:05] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:27:14] [Server thread/INFO]: I wish there was an Official MC post by Chiss about this +2015-06-29 [14:27:14] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:27:14] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:27:21] [Server thread/INFO]: yeah +2015-06-29 [14:27:23] [Server thread/WARNING]: Caleb_Wolfheart moved wrongly! +2015-06-29 [14:27:40] [Server thread/WARNING]: B_R_A_D moved wrongly! +2015-06-29 [14:27:42] [Server thread/INFO]: i keep teleportinf around +2015-06-29 [17:42:14] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [17:42:14] [Server thread/INFO]: Loading server properties... +2015-06-29 [17:42:14] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [17:42:14] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [17:42:14] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [17:42:14] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [17:42:14] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [17:42:14] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [17:42:15] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [17:42:15] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [17:42:15] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [17:42:15] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [17:42:15] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [17:42:15] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [17:42:15] [Server thread/INFO]: Preparing level "world" +2015-06-29 [17:42:15] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [17:42:15] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [17:42:15] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [17:42:15] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [17:42:15] [Server thread/INFO]: Done (1.555s)! For help, type "help" or "?" +2015-06-29 [17:43:01] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [17:43:01] [Server thread/INFO]: Loading server properties... +2015-06-29 [17:43:01] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [17:43:01] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [17:43:01] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [17:43:01] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [17:43:01] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [17:43:01] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [17:43:01] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [17:43:01] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [17:43:02] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [17:43:02] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [17:43:02] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [17:43:02] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [17:43:02] [Server thread/INFO]: Preparing level "world" +2015-06-29 [17:43:02] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [17:43:02] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [17:43:02] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [17:43:02] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [17:43:02] [Server thread/INFO]: Done (1.545s)! For help, type "help" or "?" +2015-06-29 [17:44:01] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [17:44:01] [Server thread/INFO]: Loading server properties... +2015-06-29 [17:44:01] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [17:44:01] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [17:44:01] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [17:44:01] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [17:44:01] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [17:44:01] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [17:44:02] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [17:44:02] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [17:44:02] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [17:44:02] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [17:44:02] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [17:44:02] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [17:44:02] [Server thread/INFO]: Preparing level "world" +2015-06-29 [17:44:02] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [17:44:02] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [17:44:02] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [17:44:03] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [17:44:03] [Server thread/INFO]: Done (1.529s)! For help, type "help" or "?" +2015-06-29 [17:46:20] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [17:46:20] [Server thread/INFO]: Loading server properties... +2015-06-29 [17:46:20] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [17:46:20] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [17:46:20] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [17:46:20] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [17:46:20] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [17:46:20] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [17:46:20] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [17:46:20] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [17:46:21] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [17:46:21] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [17:46:21] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [17:46:21] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [17:46:21] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [17:46:21] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [17:46:21] [Server thread/INFO]: Loading source plugin TestPlugin v1.0.0 +2015-06-29 [17:46:21] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [17:46:21] [Server thread/INFO]: Preparing level "world" +2015-06-29 [17:46:21] [Server thread/INFO]: Enabling TestPlugin v1.0.0 +2015-06-29 [17:46:21] [Server thread/INFO]: [TestPlugin] Plugin Loaded +2015-06-29 [17:46:21] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [17:46:21] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [17:46:21] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [17:46:21] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [17:46:21] [Server thread/INFO]: Done (1.58s)! For help, type "help" or "?" +2015-06-29 [18:05:35] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:05:35] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:05:35] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:05:35] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:05:35] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:05:35] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:05:35] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:05:35] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:05:35] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:05:35] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:05:36] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:05:36] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:05:36] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:05:36] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:05:36] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:05:36] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:05:36] [Server thread/INFO]: Loading source plugin TestPlugin v1.0.0 +2015-06-29 [18:05:36] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:05:36] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:05:36] [Server thread/INFO]: Enabling TestPlugin v1.0.0 +2015-06-29 [18:05:36] [Server thread/INFO]: [TestPlugin] Plugin Loaded +2015-06-29 [18:05:36] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:05:36] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:05:36] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:05:36] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:05:36] [Server thread/INFO]: Done (1.589s)! For help, type "help" or "?" +2015-06-29 [18:05:44] [Server thread/INFO]: chissling[/1.152.97.61:52856] logged in with entity id 1 at (world, 134.0593, 5.825, 126.9941) +2015-06-29 [18:05:51] [Server thread/INFO]: chissling joined the game +2015-06-29 [18:06:06] [Server thread/CRITICAL]: "Could not pass event 'pocketmine\event\player\PlayerCommandPreprocessEvent' to 'TestPlugin v1.0.0': Class chiss\test\UtilString not found on chiss\test\Test +2015-06-29 [18:06:06] [Server thread/CRITICAL]: ClassNotFoundException: "Class chiss\test\UtilString not found" (EXCEPTION) in "/src/spl/BaseClassLoader" at line 144 +2015-06-29 [18:06:50] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:06:50] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:06:50] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:06:50] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:06:50] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:06:50] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:06:50] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:06:50] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:06:50] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:06:50] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:06:51] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:06:51] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:06:51] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:06:51] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:06:51] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:06:51] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:06:51] [Server thread/INFO]: Loading source plugin TestPlugin v1.0.0 +2015-06-29 [18:06:51] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:06:51] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:06:51] [Server thread/INFO]: Enabling TestPlugin v1.0.0 +2015-06-29 [18:06:51] [Server thread/INFO]: [TestPlugin] Plugin Loaded +2015-06-29 [18:06:51] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:06:51] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:06:51] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:06:51] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:06:51] [Server thread/INFO]: Done (1.563s)! For help, type "help" or "?" +2015-06-29 [18:07:52] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:07:52] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:07:52] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:07:52] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:07:52] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:07:52] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:07:52] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:07:52] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:07:53] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:07:53] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:07:53] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:07:54] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:07:54] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:07:54] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:07:54] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:07:54] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:07:54] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:07:54] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:07:54] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:07:54] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:07:54] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:07:54] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:07:54] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:07:54] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:07:54] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:07:54] [Server thread/INFO]: Done (1.562s)! For help, type "help" or "?" +2015-06-29 [18:08:06] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:08:06] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:08:06] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:08:06] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:08:06] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:08:06] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:08:06] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:08:06] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:08:07] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:08:07] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:08:07] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:08:08] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:08:08] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:08:08] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:08:08] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:08:08] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:08:08] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:08:08] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:08:08] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:08:08] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:08:08] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:08:08] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:08:08] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:08:08] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:08:08] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:08:08] [Server thread/INFO]: Done (1.556s)! For help, type "help" or "?" +2015-06-29 [18:08:22] [Server thread/INFO]: chissling[/1.152.97.61:64403] logged in with entity id 1 at (world, 134.0593, 5.825, 126.9941) +2015-06-29 [18:08:28] [Server thread/INFO]: [Test] 0 +2015-06-29 [18:08:28] [Server thread/INFO]: chissling joined the game +2015-06-29 [18:10:32] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:10:32] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:10:32] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:10:32] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:10:32] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:10:32] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:10:32] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:10:32] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:10:32] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:10:32] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:10:33] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:10:33] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:10:33] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:10:33] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:10:33] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:10:33] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:10:33] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:10:33] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:10:33] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:10:33] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:10:33] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:10:33] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:10:33] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:10:33] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:10:33] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:10:33] [Server thread/INFO]: Done (1.553s)! For help, type "help" or "?" +2015-06-29 [18:10:41] [Server thread/INFO]: chissling[/1.152.97.61:31288] logged in with entity id 1 at (world, 134.0593, 5.825, 126.9941) +2015-06-29 [18:10:48] [Server thread/INFO]: [Test] I SAID WELCOME TO chissling +2015-06-29 [18:10:48] [Server thread/INFO]: chissling joined the game +2015-06-29 [18:11:12] [Server thread/CRITICAL]: "Could not pass event 'pocketmine\event\player\PlayerCommandPreprocessEvent' to 'Test v1.0.0': Class chiss\test\UtilString not found on chiss\test\Test +2015-06-29 [18:11:12] [Server thread/CRITICAL]: ClassNotFoundException: "Class chiss\test\UtilString not found" (EXCEPTION) in "/src/spl/BaseClassLoader" at line 144 +2015-06-29 [18:12:51] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:12:51] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:12:51] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:12:51] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:12:51] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:12:51] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:12:51] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:12:51] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:12:51] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:12:51] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:12:52] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:12:52] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:12:52] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:12:52] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:12:52] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:12:52] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:12:52] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:12:52] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:12:52] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:12:52] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:12:52] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:12:52] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:12:52] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:12:52] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:12:52] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:12:52] [Server thread/INFO]: Done (1.571s)! For help, type "help" or "?" +2015-06-29 [18:12:55] [Server thread/INFO]: chissling[/1.152.97.61:54729] logged in with entity id 1 at (world, 134.0593, 5.825, 126.9941) +2015-06-29 [18:13:01] [Server thread/INFO]: chissling joined the game +2015-06-29 [18:16:34] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:16:34] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:16:34] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:16:34] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:16:34] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:16:34] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:16:34] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:16:34] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:16:35] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:16:35] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:16:35] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:16:35] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:16:35] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:16:35] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:16:35] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:16:35] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:16:35] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:16:35] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:16:35] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:16:35] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:16:35] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:16:36] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:16:36] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:16:36] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:16:36] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:16:36] [Server thread/INFO]: Done (1.6s)! For help, type "help" or "?" +2015-06-29 [18:16:43] [Server thread/INFO]: chissling[/1.152.97.61:39996] logged in with entity id 1 at (world, 134.0593, 5.825, 126.9941) +2015-06-29 [18:16:50] [Server thread/INFO]: chissling joined the game +2015-06-29 [18:30:44] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:30:44] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:30:44] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:30:44] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:30:44] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:30:44] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:30:44] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:30:44] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:30:45] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:30:45] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:30:45] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:30:46] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:30:46] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:30:46] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:30:46] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:30:46] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:30:46] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:30:46] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:30:46] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:30:46] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:30:46] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:30:46] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:30:46] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:30:46] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:30:46] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:30:46] [Server thread/INFO]: Done (1.605s)! For help, type "help" or "?" +2015-06-29 [18:31:14] [Server thread/INFO]: chissling[/1.152.97.61:2564] logged in with entity id 1 at (world, 134.0593, 5.825, 126.9941) +2015-06-29 [18:31:21] [Server thread/INFO]: chissling joined the game +2015-06-29 [18:31:34] [Server thread/INFO]: chissling left the game +2015-06-29 [18:31:34] [Server thread/INFO]: chissling[/1.152.97.61:2564] logged out due to client disconnect +2015-06-29 [18:33:50] [Server thread/NOTICE]: Player data not found for "herobrine", creating new profile +2015-06-29 [18:33:50] [Server thread/INFO]: HEROBRINE[/83.217.154.11:53105] logged in with entity id 2 at (world, 128, 4, 128) +2015-06-29 [18:33:55] [Server thread/INFO]: HEROBRINE joined the game +2015-06-29 [18:34:22] [Server thread/INFO]: hellro +2015-06-29 [18:34:25] [Server thread/INFO]: HEROBRINE left the game +2015-06-29 [18:34:25] [Server thread/INFO]: HEROBRINE[/83.217.154.11:53105] logged out due to client disconnect +2015-06-29 [18:39:36] [Server thread/NOTICE]: Player data not found for "zombo_", creating new profile +2015-06-29 [18:39:36] [Server thread/INFO]: Zombo_[/83.217.154.11:62633] logged in with entity id 3 at (world, 128, 4, 128) +2015-06-29 [18:39:41] [Server thread/INFO]: Zombo_ joined the game +2015-06-29 [18:40:04] [Server thread/INFO]: Zombo_ left the game +2015-06-29 [18:40:04] [Server thread/INFO]: Zombo_[/83.217.154.11:62633] logged out due to client disconnect +2015-06-29 [18:49:24] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:49:24] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:49:24] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:49:24] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:49:24] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:49:24] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:49:24] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:49:24] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:49:24] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:49:24] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:49:25] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:49:25] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:49:25] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:49:25] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:49:25] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:49:25] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:49:25] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:49:25] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:49:25] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:49:25] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:49:25] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:49:25] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:49:25] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:49:25] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:49:25] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:49:25] [Server thread/INFO]: Done (1.602s)! For help, type "help" or "?" +2015-06-29 [18:49:25] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [18:49:25] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-18.49.25-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [18:49:25] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [18:49:25] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:49:25] [Server thread/INFO]: Unloading level "world" +2015-06-29 [18:53:38] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:53:38] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:53:38] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:53:38] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:53:38] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:53:38] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:53:38] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:53:38] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:53:38] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:53:38] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:53:38] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:53:39] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:53:39] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:53:39] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:53:39] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:53:39] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:53:39] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:53:39] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:53:39] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:53:39] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:53:39] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:53:39] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:53:39] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:53:39] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:53:39] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:53:39] [Server thread/INFO]: Done (1.575s)! For help, type "help" or "?" +2015-06-29 [18:53:39] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [18:53:39] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-18.53.39-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [18:53:39] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [18:53:39] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:53:39] [Server thread/INFO]: Unloading level "world" +2015-06-29 [18:54:08] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:54:08] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:54:08] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:54:08] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:54:08] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:54:08] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:54:08] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:54:08] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:54:09] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:54:09] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:54:09] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:54:09] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:54:09] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:54:09] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:54:09] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:54:09] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:54:09] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:54:09] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:54:09] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:54:09] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:54:09] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:54:10] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:54:10] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:54:10] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:54:10] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:54:10] [Server thread/INFO]: Done (1.561s)! For help, type "help" or "?" +2015-06-29 [18:54:10] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [18:54:10] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-18.54.10-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [18:54:10] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [18:54:10] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:54:10] [Server thread/INFO]: Unloading level "world" +2015-06-29 [18:56:24] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:56:24] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:56:24] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:56:24] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:56:24] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:56:24] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:56:24] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:56:24] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:56:25] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:56:25] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:56:25] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:56:25] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:56:25] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:56:25] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:56:25] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:56:25] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:56:25] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:56:25] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:56:25] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:56:25] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:56:25] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:56:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\tasks\TickTask::__construct() must be an instance of chiss\test\tasks\Test, instance of chiss\test\Test given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\Test.php on line 20 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/tasks/TickTask" at line 12 +2015-06-29 [18:56:25] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:56:26] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:56:26] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:56:26] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:56:26] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:56:26] [Server thread/INFO]: Done (1.564s)! For help, type "help" or "?" +2015-06-29 [18:57:15] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:57:15] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:57:15] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:57:15] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:57:15] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:57:15] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:57:15] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:57:15] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:57:16] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:57:16] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:57:16] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:57:16] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:57:16] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:57:16] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:57:16] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:57:16] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:57:16] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:57:16] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:57:16] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:57:17] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:57:17] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:57:17] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:57:17] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:57:17] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:57:17] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:57:17] [Server thread/INFO]: Done (1.556s)! For help, type "help" or "?" +2015-06-29 [18:57:17] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [18:57:17] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-18.57.17-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [18:57:17] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [18:57:17] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:57:17] [Server thread/INFO]: Unloading level "world" +2015-06-29 [18:57:50] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:57:50] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:57:50] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:57:50] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:57:50] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:57:50] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:57:50] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:57:50] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:57:50] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:57:50] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:57:50] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:57:51] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:57:51] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:57:51] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:57:51] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:57:51] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:57:51] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:57:51] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:57:51] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:57:51] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:57:51] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:57:51] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:57:51] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:57:51] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:57:51] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:57:51] [Server thread/INFO]: Done (1.568s)! For help, type "help" or "?" +2015-06-29 [18:57:51] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [18:57:51] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-18.57.51-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [18:57:51] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [18:57:51] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:57:51] [Server thread/INFO]: Unloading level "world" +2015-06-29 [18:59:08] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [18:59:08] [Server thread/INFO]: Loading server properties... +2015-06-29 [18:59:08] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [18:59:08] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [18:59:08] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [18:59:08] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [18:59:08] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [18:59:08] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [18:59:09] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [18:59:09] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [18:59:09] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [18:59:09] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [18:59:09] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [18:59:09] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [18:59:09] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [18:59:09] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [18:59:09] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [18:59:09] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [18:59:09] [Server thread/INFO]: Preparing level "world" +2015-06-29 [18:59:09] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [18:59:09] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [18:59:09] [Server thread/CRITICAL]: pocketmine\utils\PluginException: "Invalid owner of PluginTask chiss\test\tasks\TickTask" (EXCEPTION) in "/src/pocketmine/scheduler/ServerScheduler" at line 188 +2015-06-29 [18:59:09] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [18:59:10] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [18:59:10] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [18:59:10] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [18:59:10] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [18:59:10] [Server thread/INFO]: Done (1.577s)! For help, type "help" or "?" +2015-06-29 [19:00:26] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:00:26] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:00:26] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:00:26] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:00:27] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:00:27] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:00:27] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:00:27] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:00:27] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:00:27] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:00:27] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:00:28] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:00:28] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:00:28] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:00:28] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:00:28] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:00:28] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:00:28] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:00:28] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:00:28] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:00:28] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:00:28] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:00:28] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:00:28] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:00:28] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:00:28] [Server thread/INFO]: Done (1.571s)! For help, type "help" or "?" +2015-06-29 [19:00:28] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [19:00:28] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-19.00.28-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [19:00:28] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:00:28] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:00:28] [Server thread/INFO]: Unloading level "world" +2015-06-29 [19:00:51] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:00:51] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:00:51] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:00:51] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:00:51] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:00:51] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:00:51] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:00:51] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:00:51] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:00:51] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:00:51] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:00:52] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:00:52] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:00:52] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:00:52] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:00:52] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:00:52] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:00:52] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:00:52] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:00:52] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:00:52] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:00:52] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:00:52] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:00:52] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:00:52] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:00:52] [Server thread/INFO]: Done (1.584s)! For help, type "help" or "?" +2015-06-29 [19:00:52] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [19:00:52] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-19.00.52-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [19:00:52] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:00:52] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:00:52] [Server thread/INFO]: Unloading level "world" +2015-06-29 [19:01:08] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:01:08] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:01:08] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:01:08] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:01:08] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:01:08] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:01:08] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:01:08] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:01:08] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:01:08] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:01:09] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:01:09] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:01:09] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:01:09] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:01:09] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:01:09] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:01:09] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:01:09] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:01:09] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:01:09] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:01:09] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:01:09] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:01:09] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:01:09] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:01:09] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:01:09] [Server thread/INFO]: Done (1.561s)! For help, type "help" or "?" +2015-06-29 [19:01:09] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [19:01:09] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-19.01.09-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [19:01:09] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:01:09] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:01:09] [Server thread/INFO]: Unloading level "world" +2015-06-29 [19:01:29] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:01:29] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:01:29] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:01:29] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:01:29] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:01:29] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:01:29] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:01:29] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:01:29] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:01:29] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:01:30] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:01:30] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:01:30] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:01:30] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:01:30] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:01:30] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:01:30] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:01:30] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:01:30] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:01:30] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:01:30] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:01:30] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:01:30] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:01:30] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:01:30] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:01:30] [Server thread/INFO]: Done (1.559s)! For help, type "help" or "?" +2015-06-29 [19:02:37] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:02:37] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:02:37] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:02:37] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:02:37] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:02:37] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:02:37] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:02:37] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:02:37] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:02:37] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:02:37] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:02:38] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:02:38] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:02:38] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:02:38] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:02:38] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:02:38] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:02:38] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:02:38] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:02:38] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:02:38] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:02:38] [Server thread/CRITICAL]: pocketmine\utils\PluginException: "Invalid owner of PluginTask chiss\test\tasks\TickTask" (EXCEPTION) in "/src/pocketmine/scheduler/ServerScheduler" at line 188 +2015-06-29 [19:02:38] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:02:38] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:02:38] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:02:38] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:02:38] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:02:38] [Server thread/INFO]: Done (1.587s)! For help, type "help" or "?" +2015-06-29 [19:02:59] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:02:59] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:02:59] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:02:59] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:02:59] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:02:59] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:02:59] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:02:59] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:02:59] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:02:59] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:03:00] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:03:00] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:03:00] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:03:00] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:03:00] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:03:00] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:03:00] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:03:00] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:03:00] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:03:00] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:03:00] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:03:00] [Server thread/CRITICAL]: pocketmine\utils\PluginException: "Invalid owner of PluginTask chiss\test\tasks\TickTask" (EXCEPTION) in "/src/pocketmine/scheduler/ServerScheduler" at line 188 +2015-06-29 [19:03:00] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:03:00] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:03:00] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:03:00] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:03:00] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:03:00] [Server thread/INFO]: Done (1.566s)! For help, type "help" or "?" +2015-06-29 [19:04:37] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:04:37] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:04:37] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:04:37] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:04:37] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:04:37] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:04:37] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:04:37] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:04:37] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:04:37] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:04:37] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:04:38] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:04:38] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:04:38] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:04:38] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:04:38] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:04:38] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:04:38] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:04:38] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:04:38] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:04:38] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:04:38] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:04:38] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:04:38] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:04:38] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:04:38] [Server thread/INFO]: Done (1.577s)! For help, type "help" or "?" +2015-06-29 [19:04:38] [Server thread/EMERGENCY]: An unrecoverable error has occurred and the server has crashed. Creating a crash dump +2015-06-29 [19:04:38] [Server thread/EMERGENCY]: Please upload the "D:\Games\PocketMine-MP\CrashDump_Mon_Jun_29-19.04.38-AEST_2015.log" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can. +2015-06-29 [19:04:38] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:04:38] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:04:38] [Server thread/INFO]: Unloading level "world" +2015-06-29 [19:05:53] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:05:53] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:05:53] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:05:53] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:05:53] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:05:53] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:05:53] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:05:53] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:05:53] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:05:53] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:05:53] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:05:54] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:05:54] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:05:54] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:05:54] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:05:54] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:05:54] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:05:54] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:05:54] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:05:54] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:05:54] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:05:54] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:05:54] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:05:54] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:05:54] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:05:54] [Server thread/INFO]: Done (1.56s)! For help, type "help" or "?" +2015-06-29 [19:05:54] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:54] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:54] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:54] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:54] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:55] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:05:56] [Server thread/INFO]: [Test] HI +2015-06-29 [19:06:04] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:06:04] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:06:04] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:06:04] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:06:04] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:06:04] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:06:04] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:06:04] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:06:05] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:06:05] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:06:05] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:06:06] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:06:06] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:06:06] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:06:06] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:06:06] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:06:06] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:06:06] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:06:06] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:06:06] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:06:06] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:06:06] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:06:06] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:06:06] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:06:06] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:06:06] [Server thread/INFO]: Done (1.561s)! For help, type "help" or "?" +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:06:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:06:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined +2015-06-29 [19:07:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 21 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:43] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:07:43] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:07:43] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:07:43] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:07:43] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:07:43] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:07:43] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:07:43] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:07:44] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:07:44] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:07:44] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:07:44] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:07:44] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:07:44] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:07:44] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:07:44] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:07:44] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:07:44] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:07:44] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:07:44] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:07:44] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:07:45] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:07:45] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:07:45] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:07:45] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:07:45] [Server thread/INFO]: Done (1.569s)! For help, type "help" or "?" +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:07:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:07:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:25] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:25] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:26] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:27] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:27] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:28] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:28] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:29] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:29] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:30] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:30] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:31] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:31] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:32] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:32] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:33] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:33] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:34] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:34] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:35] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:35] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:36] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:36] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:37] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:37] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:38] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:38] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:39] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:39] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:40] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:40] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:41] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:41] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:42] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:42] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:43] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:43] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:44] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:44] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:45] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:45] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:46] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:46] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:47] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:47] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:48] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:48] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:49] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:49] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:50] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:50] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:51] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:51] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:52] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:52] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:53] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:53] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:54] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:54] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:55] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:55] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:56] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:56] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:57] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:57] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:58] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:58] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:08:59] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:08:59] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:00] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:00] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:01] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:01] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:02] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:02] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:03] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:03] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:04] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:04] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:05] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:05] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:06] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:06] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:07] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:07] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:08] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:08] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:09] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:09] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:10] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:10] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:11] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:11] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:12] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:12] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:13] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:13] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:14] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:14] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:15] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:15] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:16] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:16] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:17] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:17] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:18] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:18] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:19] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:19] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:20] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:20] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:21] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:21] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:22] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:22] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:23] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:23] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:24] [Server thread/CRITICAL]: Could not execute task chiss\test\tasks\TickTask: Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined +2015-06-29 [19:09:24] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\test\events\TickEvent::__construct() must be an instance of chiss\test\events\int, integer given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\test\tasks\TickTask.php on line 23 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/test/events/TickEvent" at line 13 +2015-06-29 [19:09:26] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:09:26] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:09:26] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:09:26] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:09:26] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:09:26] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:09:26] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:09:26] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:09:26] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:09:26] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:09:26] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:09:27] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:09:27] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:09:27] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:09:27] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:09:27] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:09:27] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:09:27] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:09:27] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:09:27] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:09:27] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:09:27] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:09:27] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:09:27] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:09:27] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:09:27] [Server thread/INFO]: Done (1.569s)! For help, type "help" or "?" +2015-06-29 [19:09:56] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:09:56] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:09:56] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:09:56] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:09:56] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:09:56] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:09:56] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:09:56] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:09:56] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:09:56] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:09:57] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:09:57] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:09:57] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:09:57] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:09:57] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:09:57] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:09:57] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:09:57] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:09:57] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:09:57] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:09:57] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:09:57] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:09:57] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:09:57] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:09:57] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:09:57] [Server thread/INFO]: Done (1.574s)! For help, type "help" or "?" +2015-06-29 [19:10:23] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:10:23] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:10:23] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:10:23] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:10:23] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:10:23] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:10:23] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:10:23] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:10:24] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:10:24] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:10:24] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:10:25] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:10:25] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:10:25] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:10:25] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:10:25] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:10:25] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:10:25] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:10:25] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:10:25] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:10:25] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:10:25] [Server thread/CRITICAL]: ReflectionException: "Class chiss\test\TickEvent does not exist" (EXCEPTION) in "/src/pocketmine/plugin/PluginManager" at line 724 +2015-06-29 [19:10:25] [Server thread/INFO]: Disabling Test v1.0.0 +2015-06-29 [19:10:25] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:10:25] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:10:25] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:10:25] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:10:25] [Server thread/INFO]: Done (1.564s)! For help, type "help" or "?" +2015-06-29 [19:10:47] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:10:47] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:10:47] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:10:47] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:10:47] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:10:47] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:10:47] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:10:47] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:10:47] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:10:47] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:10:47] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:10:48] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:10:48] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:10:48] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:10:48] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:10:48] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:10:48] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:10:48] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:10:48] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:10:48] [Server thread/INFO]: Enabling Test v1.0.0 +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] Plugin Loaded +2015-06-29 [19:10:48] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:10:48] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:10:48] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:10:48] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:10:48] [Server thread/INFO]: Done (1.588s)! For help, type "help" or "?" +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:48] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:49] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:50] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:51] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:52] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:53] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:54] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:55] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:56] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:57] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:58] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:10:59] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:00] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:01] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:02] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:03] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:04] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:05] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:06] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:07] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:08] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:09] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:11:10] [Server thread/INFO]: [Test] SUCH TICK MANY WOWS +2015-06-29 [19:36:58] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:36:58] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:36:58] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:36:58] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:36:58] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:36:58] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:36:58] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:36:58] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:36:59] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:36:59] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:36:59] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:36:59] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:36:59] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:36:59] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:36:59] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:36:59] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:36:59] [Server thread/INFO]: Loading source plugin Test v1.0.0 +2015-06-29 [19:36:59] [Server thread/CRITICAL]: ClassNotFoundException: "Class chiss\test\Test not found" (EXCEPTION) in "/src/spl/BaseClassLoader" at line 144 +2015-06-29 [19:36:59] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:36:59] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:36:59] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:36:59] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:36:59] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:37:00] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:37:00] [Server thread/INFO]: Done (1.56s)! For help, type "help" or "?" +2015-06-29 [19:37:23] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:37:23] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:37:23] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:37:23] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:37:23] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:37:23] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:37:23] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:37:23] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:37:23] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:37:23] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:37:24] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:37:24] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:37:24] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:37:24] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:37:24] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:37:24] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:37:24] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:37:24] [Server thread/CRITICAL]: ClassNotFoundException: "Class chiss\plugin\Main not found" (EXCEPTION) in "/src/spl/BaseClassLoader" at line 131 +2015-06-29 [19:37:24] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:37:24] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:37:24] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:37:24] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:37:24] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:37:24] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:37:24] [Server thread/INFO]: Done (1.545s)! For help, type "help" or "?" +2015-06-29 [19:38:22] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:38:22] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:38:22] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:38:22] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:38:22] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:38:22] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:38:22] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:38:22] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:38:23] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:38:23] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:38:23] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:38:23] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:38:23] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:38:23] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:38:23] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:38:23] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:38:23] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:38:23] [Server thread/CRITICAL]: ClassNotFoundException: "Class chiss\plugin\Main not found" (EXCEPTION) in "/src/spl/BaseClassLoader" at line 131 +2015-06-29 [19:38:23] [Server thread/INFO]: Disabling DevTools v1.10.0 +2015-06-29 [19:38:24] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:38:24] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:38:24] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:38:24] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:38:24] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:38:24] [Server thread/INFO]: Done (1.567s)! For help, type "help" or "?" +2015-06-29 [19:40:25] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:40:25] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:40:25] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:40:25] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:40:25] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:40:25] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:40:25] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:40:25] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:40:25] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:40:25] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:40:25] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:40:26] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:40:26] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:40:26] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:40:26] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:40:26] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:40:26] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:40:26] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:40:26] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:40:26] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:40:26] [Server thread/NOTICE]: InvalidArgumentException: "Argument 1 passed to chiss\plugin\tasks\TickTask::__construct() must be an instance of chiss\plugin\Test, instance of chiss\plugin\Main given, called in D:\Games\PocketMine-MP\plugins\Test\src\chiss\plugin\Main.php on line 19 and defined" (E_RECOVERABLE_ERROR) in "/Test/src/chiss/plugin/tasks/TickTask" at line 13 +2015-06-29 [19:40:26] [Server thread/INFO]: Disabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:40:26] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:40:26] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:40:26] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:40:26] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:40:26] [Server thread/INFO]: Done (1.587s)! For help, type "help" or "?" +2015-06-29 [19:40:46] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:40:46] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:40:46] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:40:46] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:40:46] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:40:46] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:40:46] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:40:46] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:40:46] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:40:46] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:40:46] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:40:47] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:40:47] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:40:47] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:40:47] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:40:47] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:40:47] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:40:47] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:40:47] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:40:47] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:40:47] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:40:47] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:40:47] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:40:47] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:40:47] [Server thread/INFO]: Done (1.564s)! For help, type "help" or "?" +2015-06-29 [19:41:01] [Server thread/INFO]: chissling[/1.152.97.61:61403] logged in with entity id 1 at (world, 134.0593, 4, 126.9941) +2015-06-29 [19:41:08] [Server thread/INFO]: [Mineplex_Pocket] chissling UID: c8afeb98-2fb3-37ef-87f6-c3443025d97b +2015-06-29 [19:41:08] [Server thread/INFO]: chissling joined the game +2015-06-29 [19:41:32] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:41:32] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:41:32] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:41:32] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:41:32] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:41:32] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:41:32] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:41:32] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:41:33] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:41:33] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:41:33] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:41:34] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:41:34] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:41:34] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:41:34] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:41:34] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:41:34] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:41:34] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:41:34] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:41:34] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:41:34] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:41:34] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:41:34] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:41:34] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:41:34] [Server thread/INFO]: Done (1.565s)! For help, type "help" or "?" +2015-06-29 [19:41:41] [Server thread/INFO]: chissling[/1.152.97.61:7624] logged in with entity id 1 at (world, 134.0593, 4, 126.9941) +2015-06-29 [19:41:48] [Server thread/INFO]: [Mineplex_Pocket] chissling UID: c8afeb98-2fb3-37ef-87f6-c3443025d97b +2015-06-29 [19:41:48] [Server thread/INFO]: chissling joined the game +2015-06-29 [19:42:45] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:42:45] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:42:45] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:42:45] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:42:45] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:42:45] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:42:45] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:42:45] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:42:46] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:42:46] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:42:46] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:42:46] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:42:46] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:42:46] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:42:46] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:42:46] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:42:46] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:42:46] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:42:46] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:42:46] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:42:47] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:42:47] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:42:47] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:42:47] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:42:47] [Server thread/INFO]: Done (1.592s)! For help, type "help" or "?" +2015-06-29 [19:43:27] [Server thread/INFO]: chissling[/1.152.97.61:13079] logged in with entity id 1 at (world, 134.0593, 4, 126.9941) +2015-06-29 [19:43:33] [Server thread/INFO]: [Mineplex_Pocket] chissling UID: c8afeb98-2fb3-37ef-87f6-c3443025d97b +2015-06-29 [19:43:33] [Server thread/INFO]: chissling joined the game +2015-06-29 [19:43:59] [Server thread/INFO]: gi +2015-06-29 [19:44:25] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:44:25] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:44:25] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:44:25] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:44:25] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:44:25] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:44:25] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:44:25] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:44:26] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:44:26] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:44:26] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:44:26] [RakLibServer thread/CRITICAL]: **** FAILED TO BIND TO 0.0.0.0:19132! +2015-06-29 [19:44:33] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:44:33] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:44:33] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:44:33] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:44:33] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:44:33] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:44:33] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:44:33] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:44:34] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:44:34] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:44:34] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:44:34] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:44:34] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:44:34] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:44:34] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:44:34] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:44:34] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:44:34] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:44:35] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:44:35] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:44:35] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:44:35] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:44:35] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:44:35] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:44:35] [Server thread/INFO]: Done (1.561s)! For help, type "help" or "?" +2015-06-29 [19:44:48] [Server thread/INFO]: chissling[/1.152.97.61:44165] logged in with entity id 1 at (world, 134.0593, 4, 126.9941) +2015-06-29 [19:44:54] [Server thread/INFO]: [Mineplex_Pocket] chissling UID: c8afeb98-2fb3-37ef-87f6-c3443025d97b +2015-06-29 [19:44:54] [Server thread/INFO]: chissling joined the game +2015-06-29 [19:45:02] [Server thread/INFO]: hi +2015-06-29 [19:46:31] [Server thread/INFO]: jRayx[/70.193.215.134:6375] logged in with entity id 2 at (world, 84.357, 10, 199.4074) +2015-06-29 [19:46:36] [Server thread/INFO]: [Mineplex_Pocket] jRayx UID: 85037453-217f-38ea-8144-5f3b2f39b967 +2015-06-29 [19:46:36] [Server thread/INFO]: jRayx joined the game +2015-06-29 [19:46:51] [Server thread/CRITICAL]: "Could not pass event 'pocketmine\event\player\PlayerCommandPreprocessEvent' to 'Mineplex_Pocket v1.0.0': Class chiss\plugin\packets\StrangePacket not found on chiss\plugin\Main +2015-06-29 [19:46:51] [Server thread/CRITICAL]: ClassNotFoundException: "Class chiss\plugin\packets\StrangePacket not found" (EXCEPTION) in "/src/spl/BaseClassLoader" at line 144 +2015-06-29 [19:47:00] [Server thread/INFO]: jRayx left the game +2015-06-29 [19:47:00] [Server thread/INFO]: jRayx[/70.193.215.134:6375] logged out due to client disconnect +2015-06-29 [19:47:18] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:47:18] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:47:18] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:47:18] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:47:18] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:47:18] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:47:18] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:47:18] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:47:18] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:47:18] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:47:18] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:47:19] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:47:19] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:47:19] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:47:19] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:47:19] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:47:19] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:47:19] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:47:19] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:47:19] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:47:19] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:47:19] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:47:19] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:47:19] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:47:19] [Server thread/INFO]: Done (1.579s)! For help, type "help" or "?" +2015-06-29 [19:47:29] [Server thread/INFO]: chissling[/1.152.97.61:61528] logged in with entity id 1 at (world, 134.0593, 4, 126.9941) +2015-06-29 [19:47:36] [Server thread/INFO]: [Mineplex_Pocket] chissling UID: c8afeb98-2fb3-37ef-87f6-c3443025d97b +2015-06-29 [19:47:36] [Server thread/INFO]: chissling joined the game +2015-06-29 [19:47:51] [Server thread/INFO]: jRayx[/70.193.215.134:6394] logged in with entity id 2 at (world, 84.357, 4, 199.4074) +2015-06-29 [19:47:57] [Server thread/INFO]: [Mineplex_Pocket] jRayx UID: 85037453-217f-38ea-8144-5f3b2f39b967 +2015-06-29 [19:47:57] [Server thread/INFO]: jRayx joined the game +2015-06-29 [19:48:08] [Server thread/INFO]: hello? +2015-06-29 [19:48:14] [Server thread/INFO]: yo +2015-06-29 [19:48:24] [Server thread/INFO]: uh +2015-06-29 [19:48:27] [Server thread/INFO]: chissling died +2015-06-29 [19:48:46] [Server thread/INFO]: jRayx died +2015-06-29 [19:50:15] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:50:15] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:50:15] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:50:15] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:50:15] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:50:15] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:50:15] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:50:15] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:50:16] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:50:16] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:50:16] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:50:16] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:50:16] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:50:16] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:50:16] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:50:16] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:50:16] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:50:16] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:50:16] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:50:16] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:50:17] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:50:17] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:50:17] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:50:17] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:50:17] [Server thread/INFO]: Done (1.603s)! For help, type "help" or "?" +2015-06-29 [19:50:24] [Server thread/INFO]: chissling[/1.152.97.61:2871] logged in with entity id 1 at (world, 134.0593, 4, 126.9941) +2015-06-29 [19:50:31] [Server thread/INFO]: [Mineplex_Pocket] chissling UID: c8afeb98-2fb3-37ef-87f6-c3443025d97b +2015-06-29 [19:50:31] [Server thread/INFO]: chissling joined the game +2015-06-29 [19:50:34] [Server thread/INFO]: jRayx[/70.193.215.134:6379] logged in with entity id 2 at (world, 84.357, 4, 199.4074) +2015-06-29 [19:50:39] [Server thread/INFO]: [Mineplex_Pocket] jRayx UID: 85037453-217f-38ea-8144-5f3b2f39b967 +2015-06-29 [19:50:39] [Server thread/INFO]: jRayx joined the game +2015-06-29 [19:50:44] [Server thread/INFO]: yo +2015-06-29 [19:50:47] [Server thread/INFO]: chissling died +2015-06-29 [19:50:58] [Server thread/INFO]: jRayx died +2015-06-29 [19:52:40] [Server thread/INFO]: jRayx left the game +2015-06-29 [19:52:40] [Server thread/INFO]: jRayx[/70.193.215.134:6379] logged out due to timeout +2015-06-29 [19:54:14] [Server thread/INFO]: // chiss // left the game +2015-06-29 [19:54:14] [Server thread/INFO]: chissling[/1.152.97.61:2871] logged out due to client disconnect +2015-06-29 [19:57:12] [Server thread/INFO]: Loading pocketmine.yml... +2015-06-29 [19:57:12] [Server thread/INFO]: Loading server properties... +2015-06-29 [19:57:12] [Server thread/INFO]: Selected English (eng) as the base language +2015-06-29 [19:57:12] [Server thread/INFO]: Starting Minecraft: PE server version v0.11.0 alpha +2015-06-29 [19:57:12] [Server thread/NOTICE]: The memory-limit setting has been deprecated. +2015-06-29 [19:57:12] [Server thread/NOTICE]: There are new memory settings on pocketmine.yml to tune memory and events. +2015-06-29 [19:57:12] [Server thread/NOTICE]: You can also reduce the amount of threads and chunks loaded control the memory usage. +2015-06-29 [19:57:12] [Server thread/INFO]: Opening server on 0.0.0.0:19132 +2015-06-29 [19:57:12] [Server thread/INFO]: This server is running PocketMine-MP version 1.5dev-1254 "活発(Kappatsu)フグ(Fugu)" (API 1.12.0) +2015-06-29 [19:57:12] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License +2015-06-29 [19:57:12] [Server thread/INFO]: Loading DevTools v1.10.0 +2015-06-29 [19:57:13] [Server thread/INFO]: ----- PocketMine-MP Auto Updater ----- +2015-06-29 [19:57:13] [Server thread/INFO]: It appears you're running a Beta build, when you've specified that you prefer to run Stable builds. +2015-06-29 [19:57:13] [Server thread/INFO]: If you would like to be kept informed about new Beta or Development builds, it is recommended that you change 'preferred-channel' in your pocketmine.yml to 'beta' or 'development'. +2015-06-29 [19:57:13] [Server thread/INFO]: ----- -------------------------- ----- +2015-06-29 [19:57:13] [Server thread/INFO]: Enabling DevTools v1.10.0 +2015-06-29 [19:57:13] [Server thread/INFO]: Loading source plugin Mineplex_Pocket v1.0.0 +2015-06-29 [19:57:13] [Server thread/INFO]: [DevTools] Registered folder plugin loader +2015-06-29 [19:57:13] [Server thread/INFO]: Preparing level "world" +2015-06-29 [19:57:13] [Server thread/INFO]: Enabling Mineplex_Pocket v1.0.0 +2015-06-29 [19:57:13] [Server thread/INFO]: Starting GS4 status listener +2015-06-29 [19:57:13] [Server thread/INFO]: Setting query port to 19132 +2015-06-29 [19:57:13] [Server thread/INFO]: Query running on 0.0.0.0:19132 +2015-06-29 [19:57:13] [Server thread/INFO]: Default game type: Survival Mode +2015-06-29 [19:57:13] [Server thread/INFO]: Done (1.566s)! For help, type "help" or "?" diff --git a/Pocket/server.properties b/Pocket/server.properties new file mode 100644 index 000000000..68d134003 --- /dev/null +++ b/Pocket/server.properties @@ -0,0 +1,26 @@ +#Properties Config file +#Mon Jun 29 19:57:13 AEST 2015 +server-name=Chiss World +server-port=19132 +memory-limit=2048M +gamemode=0 +max-players=100 +spawn-protection=16 +white-list=off +enable-query=on +enable-rcon=off +motd=Chiss World Yay +announce-player-achievements=off +allow-flight=off +spawn-animals=off +spawn-mobs=off +force-gamemode=off +hardcore=off +pvp=off +difficulty=1 +generator-settings= +level-name=world +level-seed= +level-type=FLAT +rcon.password=fTbky+Ma7n +auto-save=off diff --git a/Pocket/start.cmd b/Pocket/start.cmd new file mode 100644 index 000000000..6ff345314 --- /dev/null +++ b/Pocket/start.cmd @@ -0,0 +1,32 @@ +@echo off +TITLE PocketMine-MP server software for Minecraft: Pocket Edition +cd /d %~dp0 + +if exist bin\php\php.exe ( + set PHPRC="" + set PHP_BINARY=bin\php\php.exe +) else ( + set PHP_BINARY=php +) + +if exist PocketMine-MP.phar ( + set POCKETMINE_FILE=PocketMine-MP.phar +) else ( + if exist src\pocketmine\PocketMine.php ( + set POCKETMINE_FILE=src\pocketmine\PocketMine.php + ) else ( + echo "Couldn't find a valid PocketMine-MP installation" + pause + exit 1 + ) +) + +REM if exist bin\php\php_wxwidgets.dll ( +REM %PHP_BINARY% %POCKETMINE_FILE% --enable-gui %* +REM ) else ( + if exist bin\mintty.exe ( + start "" bin\mintty.exe -o Columns=88 -o Rows=32 -o AllowBlinking=0 -o FontQuality=3 -o Font="DejaVu Sans Mono" -o FontHeight=10 -o CursorType=0 -o CursorBlinks=1 -h error -t "PocketMine-MP" -i bin/pocketmine.ico -w max %PHP_BINARY% %POCKETMINE_FILE% --enable-ansi %* + ) else ( + %PHP_BINARY% -c bin\php %POCKETMINE_FILE% %* + ) +REM ) diff --git a/Pocket/white-list.txt b/Pocket/white-list.txt new file mode 100644 index 000000000..e69de29bb diff --git a/Pocket/worlds/world/level.dat b/Pocket/worlds/world/level.dat new file mode 100644 index 000000000..7373a2a7a Binary files /dev/null and b/Pocket/worlds/world/level.dat differ diff --git a/Pocket/worlds/world/region/r.-1.0.mcr b/Pocket/worlds/world/region/r.-1.0.mcr new file mode 100644 index 000000000..7d56a4937 Binary files /dev/null and b/Pocket/worlds/world/region/r.-1.0.mcr differ diff --git a/Pocket/worlds/world/region/r.-1.1.mcr b/Pocket/worlds/world/region/r.-1.1.mcr new file mode 100644 index 000000000..538358f86 Binary files /dev/null and b/Pocket/worlds/world/region/r.-1.1.mcr differ diff --git a/Pocket/worlds/world/region/r.0.-1.mcr b/Pocket/worlds/world/region/r.0.-1.mcr new file mode 100644 index 000000000..ceccbcbc3 Binary files /dev/null and b/Pocket/worlds/world/region/r.0.-1.mcr differ diff --git a/Pocket/worlds/world/region/r.0.-2.mcr b/Pocket/worlds/world/region/r.0.-2.mcr new file mode 100644 index 000000000..b4672efd4 Binary files /dev/null and b/Pocket/worlds/world/region/r.0.-2.mcr differ diff --git a/Pocket/worlds/world/region/r.0.0.mcr b/Pocket/worlds/world/region/r.0.0.mcr new file mode 100644 index 000000000..a680e252e Binary files /dev/null and b/Pocket/worlds/world/region/r.0.0.mcr differ diff --git a/Pocket/worlds/world/region/r.0.1.mcr b/Pocket/worlds/world/region/r.0.1.mcr new file mode 100644 index 000000000..86426468d Binary files /dev/null and b/Pocket/worlds/world/region/r.0.1.mcr differ diff --git a/Pocket/worlds/world/region/r.1.-1.mcr b/Pocket/worlds/world/region/r.1.-1.mcr new file mode 100644 index 000000000..6c8b9a9e7 Binary files /dev/null and b/Pocket/worlds/world/region/r.1.-1.mcr differ diff --git a/Pocket/worlds/world/region/r.1.0.mcr b/Pocket/worlds/world/region/r.1.0.mcr new file mode 100644 index 000000000..b165070b9 Binary files /dev/null and b/Pocket/worlds/world/region/r.1.0.mcr differ diff --git a/Pocket/worlds/world/region/r.2.-1.mcr b/Pocket/worlds/world/region/r.2.-1.mcr new file mode 100644 index 000000000..7b8cde4d6 Binary files /dev/null and b/Pocket/worlds/world/region/r.2.-1.mcr differ diff --git a/Pocket/worlds/world/region/r.2.0.mcr b/Pocket/worlds/world/region/r.2.0.mcr new file mode 100644 index 000000000..7b8cde4d6 Binary files /dev/null and b/Pocket/worlds/world/region/r.2.0.mcr differ diff --git a/Pocket/worlds/world/region/r.3.-1.mcr b/Pocket/worlds/world/region/r.3.-1.mcr new file mode 100644 index 000000000..205425151 Binary files /dev/null and b/Pocket/worlds/world/region/r.3.-1.mcr differ diff --git a/Pocket/worlds/world/region/r.3.0.mcr b/Pocket/worlds/world/region/r.3.0.mcr new file mode 100644 index 000000000..41928b94a Binary files /dev/null and b/Pocket/worlds/world/region/r.3.0.mcr differ