mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-04 08:56:15 +00:00
Remove some fully qualified function calls
PhpStorm can't see these or understand how they are being called, which is very annoying for bug hunting. Additionally, we already have the CodeOptimizer for this.
This commit is contained in:
@ -215,7 +215,7 @@ abstract class Projectile extends Entity{
|
||||
}elseif($blockHit !== null){
|
||||
$ev = new ProjectileHitBlockEvent($this, $hitResult, $blockHit);
|
||||
}else{
|
||||
\assert(false, "unknown hit type");
|
||||
assert(false, "unknown hit type");
|
||||
}
|
||||
|
||||
if($ev !== null){
|
||||
|
Reference in New Issue
Block a user