mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-15 10:29:20 +02:00
Fix login.php boosted creature & boss (not sure exact version, but should be 14.12 or around)
Thanks @opentibiabr team
This commit is contained in:
parent
ef6549c17c
commit
c48b800631
15
login.php
15
login.php
@ -86,12 +86,25 @@ switch ($action) {
|
||||
die(json_encode(['eventlist' => $eventlist, 'lastupdatetimestamp' => time()]));
|
||||
|
||||
case 'boostedcreature':
|
||||
$clientVersion = (int)setting('core.client');
|
||||
|
||||
// 14.00 and up
|
||||
if ($clientVersion >= 1400) {
|
||||
$creatureBoost = $db->query("SELECT * FROM " . $db->tableName('boosted_creature'))->fetchAll();
|
||||
$bossBoost = $db->query("SELECT * FROM " . $db->tableName('boosted_boss'))->fetchAll();
|
||||
die(json_encode([
|
||||
'boostedcreature' => true,
|
||||
'creatureraceid' => intval($creatureBoost[0]['raceid']),
|
||||
'bossraceid' => intval($bossBoost[0]['raceid'])
|
||||
]));
|
||||
}
|
||||
|
||||
// lower clients
|
||||
$boostedCreature = BoostedCreature::first();
|
||||
die(json_encode([
|
||||
'boostedcreature' => true,
|
||||
'raceid' => $boostedCreature->raceid
|
||||
]));
|
||||
break;
|
||||
|
||||
case 'login':
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user