diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-24 03:44:46 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-24 03:44:46 -0800 |
commit | f46a9fe7be0214cdf9a2b37fd1a93934d2dfac85 (patch) | |
tree | b3726ed58f3fb2a5f050492d929c39c0b6d0e2b3 /includes | |
parent | 2693bb6adc946176ba4edc6dbd7787ff4e68377a (diff) | |
download | pathery-f46a9fe7be0214cdf9a2b37fd1a93934d2dfac85.tar.xz |
Partial-Fix. This needs to be fixed in SQL :(. Reported typo from feedback. - Whoops...
Diffstat (limited to 'includes')
-rw-r--r-- | includes/datas.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/datas.php b/includes/datas.php index b029375..98958c5 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -646,7 +646,9 @@ function getMazeMasteryArray() { //TYPE 4 function getChampionPointsArray() { //$cp[0] = array(requiredpoints, type, 'value', 'name'); - $r[1] = array(100, 2, 'DiagonalCover_B.png', 'Light Diagnol Cover', 0); + //TODO: Crap.... typo... Need to fix this in SQL too. + //$r[1] = array(100, 2, 'DiagonalCover_B.png', 'Light Diagnol Cover', 0); + $r[1] = array(100, 2, 'DiagonalCover_B.png', 'Light Diagonal Cover', 0); $r[2] = array(250, 1, '#22aaaa', 'Teal'); $r[3] = array(500, 2, 'OffsetStripesDiagonal_B.png', 'Dark Diagonal Stripes', 0); $r[4] = array(1000, 2, 'DiamondLargeDonut_W_I.png', 'Inverted Light Annulated Diamond', 0); |