Items: removed an unnessecary check. (prevented filtering of virtual itemSubClasses)

This commit is contained in:
Sarjuuk
2015-06-17 16:14:33 +02:00
parent 53fee61b76
commit 1557cd7ed5

View File

@@ -87,7 +87,7 @@ class ItemsPage extends GenericPage
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('items'));
$this->subCat = is_numeric($pageParam) ? '='.$pageParam : '';
$this->subCat = $pageParam ? '='.$pageParam : '';
}
protected function generateContent()