Spells/Scaling
* implement tooltip scaling calculation for spells with attribute SPELL_ATTR0_LEVEL_DAMAGE_CALCULATION * I don't know why i loaded item scales as spell scales a decade ago. Lets hope removing that didn't break stuff.
This commit is contained in:
parent
55f599bbb8
commit
3510c8211c
10 changed files with 165 additions and 24 deletions
|
|
@ -31,7 +31,7 @@ class DataBaseResponse extends TextResponse
|
|||
foreach ($this->params as $set)
|
||||
{
|
||||
// requires valid token to hinder automated access
|
||||
if ($set != 'item-scaling' && (!$this->_get['t'] || empty($_SESSION['dataKey']) || $this->_get['t'] != $_SESSION['dataKey']))
|
||||
if ($set != 'item-scaling' && $set != 'spell-scaling' && (!$this->_get['t'] || empty($_SESSION['dataKey']) || $this->_get['t'] != $_SESSION['dataKey']))
|
||||
{
|
||||
trigger_error('DataBaseResponse::generate - session data key empty or expired', E_USER_ERROR);
|
||||
continue;
|
||||
|
|
@ -54,6 +54,7 @@ class DataBaseResponse extends TextResponse
|
|||
'quick-excludes',
|
||||
'weight-presets',
|
||||
'item-scaling',
|
||||
'spell-scaling',
|
||||
'realms',
|
||||
'statistics' => $this->loadAgnosticFile($set),
|
||||
// localized
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue