Summary
images/roster_classes/ is missing icons for the Beastlord and Channeler classes, even though images/class_images/ has both. The roster grid/listing view will show a broken/missing icon for characters of these two classes.
Details
Found while auditing the README against the actual installer data (game/eq2_installer.php) — Beastlord (class_id 25) and Channeler (class_id 26) are both seeded correctly and have detail-page icons, but:
$ diff <(ls images/class_images) <(ls images/roster_classes)
0a1,3
> eq2_Captain.png
> eq2_Coercer.png
> eq2_Warden_small.png
2d4
< eq2_beastlord.png
6,7d7
< eq2_channeler.png
< eq2_coercer.png
24d23
< eq2_warden.png
Fix
Add eq2_beastlord.png and eq2_channeler.png to images/roster_classes/, matching the naming convention of the existing files in that directory (lowercase, e.g. eq2_coercer.png).
Also noticed (separate, non-blocking cleanup)
images/roster_classes/ has some inconsistent casing on existing files that doesn't match class_images/'s lowercase convention:
eq2_Captain.png / eq2_Coercer.png (uppercase) alongside lowercase eq2_coercer.png
eq2_Warden_small.png (unclear if intentional variant or leftover)
Not blocking — the game still resolves a file for Captain/Coercer/Warden — but worth a naming-convention cleanup pass while in this directory.
Summary
images/roster_classes/is missing icons for the Beastlord and Channeler classes, even thoughimages/class_images/has both. The roster grid/listing view will show a broken/missing icon for characters of these two classes.Details
Found while auditing the README against the actual installer data (
game/eq2_installer.php) — Beastlord (class_id 25) and Channeler (class_id 26) are both seeded correctly and have detail-page icons, but:Fix
Add
eq2_beastlord.pngandeq2_channeler.pngtoimages/roster_classes/, matching the naming convention of the existing files in that directory (lowercase, e.g.eq2_coercer.png).Also noticed (separate, non-blocking cleanup)
images/roster_classes/has some inconsistent casing on existing files that doesn't matchclass_images/'s lowercase convention:eq2_Captain.png/eq2_Coercer.png(uppercase) alongside lowercaseeq2_coercer.pngeq2_Warden_small.png(unclear if intentional variant or leftover)Not blocking — the game still resolves a file for Captain/Coercer/Warden — but worth a naming-convention cleanup pass while in this directory.