Misc/Readme

* update required TDB-version (hint: its never 'latest')
 * fixed artifacts from setup conversion
 * version push
This commit is contained in:
Sarjuuk
2020-02-23 18:42:14 +01:00
parent 16bd59e0cc
commit 5bb15d47d7
4 changed files with 7 additions and 7 deletions

View File

@@ -24,11 +24,11 @@ Also, this project is not meant to be used for commercial puposes of any kind!
+ Mysqli
+ mbString
+ MySQL ≥ 5.5.30
+ [TDB 335.64](https://github.com/TrinityCore/TrinityCore/releases/tag/TDB335.64) - including world updates up to 09.10.2018
+ [TDB 335.20021](https://github.com/TrinityCore/TrinityCore/releases/tag/TDB335.20021)
+ Tools require cmake: Please refer to the individual repositories for detailed information
+ [MPQExtractor](https://github.com/Sarjuuk/MPQExtractor) / [FFmpeg](https://ffmpeg.org/download.html) / [BLPConverter](https://github.com/Sarjuuk/BLPConverter) (optional)
+ [MPQExtractor](https://github.com/Sarjuuk/MPQExtractor) / [FFmpeg](https://ffmpeg.org/download.html) / (optional: [BLPConverter](https://github.com/Sarjuuk/BLPConverter))
+ WIN users may find it easier to use these alternatives
+ [MPQEditor](http://www.zezula.net/en/mpq/download.html) / [FFmpeg](http://ffmpeg.zeranoe.com/builds/) / [BLPConverter](https://github.com/PatrickCyr/BLPConverter) (optional)
+ [MPQEditor](http://www.zezula.net/en/mpq/download.html) / [FFmpeg](http://ffmpeg.zeranoe.com/builds/) / (optional: [BLPConverter](https://github.com/PatrickCyr/BLPConverter))
audio processing may require [lame](https://sourceforge.net/projects/lame/files/lame/3.99/) or [vorbis-tools](https://www.xiph.org/downloads/) (which may require libvorbis (which may require libogg))

View File

@@ -1,6 +1,6 @@
<?php
define('AOWOW_REVISION', 29);
define('AOWOW_REVISION', 30);
define('CLI', PHP_SAPI === 'cli');

View File

@@ -248,7 +248,7 @@ SqlGen::register(new class extends SetupScript
$offset = 0;
CLI::write(' - applying stats for enchantments');
$enchStats = enchantment_stats();
$enchStats = $this->enchantment_stats();
CLI::write(' '.count($enchStats).' enchantments parsed');
CLI::write(' - applying stats for items');

View File

@@ -186,7 +186,7 @@ SqlGen::register(new class extends SetupScript
}
// if areaId is set, area was determined by TC .. we're fine .. mostly
$final = $spawn['areaId'] ? $points[0] : $checkCoords($points);
$final = $spawn['areaId'] ? $points[0] : $this->checkCoords($points);
if ($idx < 5)
{