Great hack. Easy to install, only a few minutes.
I did make two changes for myself
in Arcade.php I ordered by username ASC instead of userid ASC since that makes more sense to me.
In template arcade_kings_bit
I wanted to fix the plural Titles for when there was only 1 title
Find
$kings[count] Arcade Titles
Replace With
<if condition="$kings['count']==1">
$kings[count] Arcade Title
<else />
$kings[count] Arcade Titles
</if>
Thanks for the hack.
|