mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 01:46:04 +00:00
Add EOF newlines where missing (bulk) (#1836)
This should solve issues with people making GitHub PRs and having the web editor messing things up. GitHub Web Editor sucks :(
This commit is contained in:
@ -32,4 +32,4 @@ class BlockLightUpdate extends LightUpdate{
|
||||
public function setLight(int $x, int $y, int $z, int $level){
|
||||
$this->subChunkHandler->currentSubChunk->setBlockLight($x & 0x0f, $y & 0x0f, $z & 0x0f, $level);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -173,4 +173,4 @@ abstract class LightUpdate{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -32,4 +32,4 @@ class SkyLightUpdate extends LightUpdate{
|
||||
public function setLight(int $x, int $y, int $z, int $level){
|
||||
$this->subChunkHandler->currentSubChunk->setBlockSkyLight($x & 0x0f, $y & 0x0f, $z & 0x0f, $level);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user