Setup/Misc

* fixed complexImage always selecting images for LOCALE_EN if able
 * fixed serverside events being displayed in the calendar
 * set initial memory limit to 4GB
 * set initial db_version to current version (forgotten to do that for a long time :x )
 * updated README.md and .gitignore; revision incremented
This commit is contained in:
Sarjuuk
2017-02-12 02:36:31 +01:00
parent 7b9d7bec1b
commit d0ec950dc1
13 changed files with 23 additions and 17 deletions

View File

@@ -37,9 +37,9 @@ function titles()
$questQuery = '
SELECT
qt.RewardTitle AS ARRAY_KEY,
qt.AllowableRaces,
ge.eventEntry
qt.RewardTitle AS ARRAY_KEY,
qt.AllowableRaces,
IFNULL(ge.eventEntry, 0) AS eventEntry
FROM
quest_template qt
LEFT JOIN
@@ -47,7 +47,7 @@ function titles()
LEFT JOIN
game_event ge ON ge.eventEntry = sq.eventEntry
WHERE
qt.RewardTitle <> 0';
qt.RewardTitle <> 0';
DB::Aowow()->query('REPLACE INTO ?_titles SELECT Id, 0, 0, 0, 0, 0, 0, 0, bitIdx, male_loc0, male_loc2, male_loc3, male_loc6, male_loc8, female_loc0, female_loc2, female_loc3, female_loc6, female_loc8 FROM dbc_chartitles');