Possibly because it is listed as "Common" in skills.tsv, and only skills to class are loaded/checked.
|
public function getSkillById($id, $class) |
|
{ |
|
$key = strtolower($class).'_'.$id; |
|
if (!array_key_exists($key, $this->skillMap)) { |
|
return null; |
|
} |
|
|
|
return $this->skillMap[$key]; |
|
} |
Possibly because it is listed as "Common" in skills.tsv, and only skills to class are loaded/checked.
tera-dpsmeter-server/app/Service/TeraData.php
Lines 46 to 54 in 830c4bc