Fixing startup warning when folders were already created

Этот коммит содержится в:
Λd5001 2018-01-28 19:08:23 +00:00 коммит произвёл GitHub
родитель 082a8060f9
Коммит b1fce28b47
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -66,8 +66,8 @@ class Main extends PluginBase implements Listener {
$this->getServer()->getPluginManager()->registerEvents($this, $this);
Generator::addGenerator(BetterNormal::class, "betternormal");
if ($this->isOtherNS()) $this->getLogger()->warning("Tesseract detected. Note that Tesseract is not up to date with the generation structure and some generation features may be limited or not working");
mkdir(LootTable::getPluginFolder());
mkdir(LootTable::getPluginFolder() . "loots");
@mkdir(LootTable::getPluginFolder());
@mkdir(LootTable::getPluginFolder() . "loots");
if (!file_exists(LootTable::getPluginFolder() . "processingLoots.json"))
file_put_contents(LootTable::getPluginFolder() . "processingLoots.json", "{}");
}