diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-08 05:41:57 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-08 05:41:57 -0600 |
commit | d0b8d2dfca3cd10cf93255ed012af41df18344f1 (patch) | |
tree | 6397fa3b00e6fa927ef4570cdb1a091c79281137 | |
parent | 3afc8122daf5d0c9c8ebed5262e29c0b9a8e7743 (diff) | |
download | pathery-d0b8d2dfca3cd10cf93255ed012af41df18344f1.tar.xz |
Fixed typo
-rw-r--r-- | db updates.sql | 7 | ||||
-rw-r--r-- | includes/datas.php | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/db updates.sql b/db updates.sql index e2ea27f..7bd16c1 100644 --- a/db updates.sql +++ b/db updates.sql @@ -101,5 +101,8 @@ SET maps.name = 'Ultra Complex' WHERE mapOfTheDay.mapType = 5 AND (maps.name IS NULL OR maps.name = ''); ---Need to support bigger solutions for these crazy new unlimited-tower maps -ALTER TABLE `solutions` CHANGE `solution` `solution` VARCHAR( 4095 ) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL
\ No newline at end of file +-- Need to support bigger solutions for these crazy new unlimited-tower maps +ALTER TABLE `solutions` CHANGE `solution` `solution` VARCHAR( 4095 ) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL; + +-- Fix Typo +UPDATE unlocks SET name = 'Light Diagonal Cover' WHERE name = 'Light Diagnol Cover'
\ No newline at end of file diff --git a/includes/datas.php b/includes/datas.php index 522317d..e321a9f 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -646,8 +646,6 @@ function getMazeMasteryArray() { //TYPE 4 function getChampionPointsArray() { //$cp[0] = array(requiredpoints, type, 'value', 'name'); - //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); |