avandenberghe / bbguild

Guild manager for phpBB 3.2
https://www.avathar.be
GNU General Public License v2.0
3 stars 0 forks source link

Edit armor types #189

Open avandenberghe opened 10 years ago

avandenberghe commented 10 years ago

currently we have a hardcoded property array $armor_type in classes.php and this refers to the language files for actual descriptions.

$this->armortypes = array (
                'CLOTH' => $user->lang ['CLOTH'],
                'ROBE' => $user->lang ['ROBE'],
                'LEATHER' => $user->lang ['LEATHER'],
                'AUGMENTED' => $user->lang ['AUGMENTED'],
                'MAIL' => $user->lang ['MAIL'],
                'HEAVY' => $user->lang ['HEAVY'],
                'PLATE' => $user->lang ['PLATE'] );

this would need to be refactored into a class of its own with translation support.