ItemFactory: add getAllRegistered()

This commit is contained in:
Dylan K. Taylor 2019-05-26 19:45:47 +01:00
parent c1a7d86670
commit 2eb498b84c

View File

@ -485,4 +485,8 @@ class ItemFactory{
}
return (($id & 0xffff) << 16) | ($variant & 0xffff);
}
public static function getAllRegistered() : array{
return self::$list;
}
}