Removing logging

This commit is contained in:
Ad5001 2017-10-25 18:19:41 +02:00
parent c8164193e7
commit b532951cc3
2 changed files with 0 additions and 4 deletions

View File

@ -156,7 +156,6 @@ class Main extends PluginBase implements Listener{
*/ */
public static function prompt(string $message): string{ public static function prompt(string $message): string{
if (PHP_OS == 'WINNT') { if (PHP_OS == 'WINNT') {
echo $message;
$line = stream_get_line(STDIN, 1024, PHP_EOL); $line = stream_get_line(STDIN, 1024, PHP_EOL);
} else { } else {
$line = readline($message); $line = readline($message);

View File

@ -230,9 +230,6 @@ class GenPainter extends Generator{
foreach($this->generationPopulators as $populator){ foreach($this->generationPopulators as $populator){
$populator->populate($this->level, $chunkX, $chunkZ, $this->random); $populator->populate($this->level, $chunkX, $chunkZ, $this->random);
} }
// Logging
echo "Land at " . ($chunkX * 16 + 7) . ", " . ($chunkZ * 16 + 7) .
" with biome " . $this->getBiomeFromPos($chunkZ * 16 + 7, $chunkZ * 16 + 7)->getName() . "\n";
} }