* reworked default exclusions (hid some things entirely, flagged others for appropriate cases)
 * char names consisting of two letters are now valid
 * fixed matching enchantments onto ranged weapons
This commit is contained in:
Sarjuuk
2018-04-22 11:31:02 +02:00
parent 9dcb0b3a15
commit d0b7fa9ef5
7 changed files with 68 additions and 24 deletions

View File

@@ -107,9 +107,6 @@ trait TrProfiler
$cat = array_map('urldecode', $cat);
if (count($cat) > 3)
return;
if ($cat[0] !== 'eu' && $cat[0] !== 'us')
return;
@@ -125,7 +122,7 @@ trait TrProfiler
{
$this->realm = $r['name'];
$this->realmId = $rId;
if (isset($cat[2]) && mb_strlen($cat[2]) >= 3)
if (isset($cat[2]) && mb_strlen($cat[2]) >= 2)
$this->subjectName = $cat[2]; // cannot reconstruct original name from urlized form; match against special name field
break;