Changeset 356
- Timestamp:
- 10/24/07 23:15:12 (2 years ago)
- Location:
- veekun/trunk/lib/Vee
- Files:
-
- 2 modified
-
Controller/Dex.pm (modified) (2 diffs)
-
Schema/EvChains.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
veekun/trunk/lib/Vee/Controller/Dex.pm
r354 r356 427 427 # chain order for this region, and then let the normal id sorting sort 428 428 # them within each chain 429 @extra_order = " base_pokemon.$colASC";429 @extra_order = "MIN(pokemon.$col) ASC"; 430 430 431 431 # grab the gen number from @Generations … … 448 448 %query, 449 449 }, { 450 join => { evchain => [qw[ base_pokemon pokemon ]]},450 join => { evchain => 'pokemon' }, 451 451 prefetch => { pokemon_abilities => 'ability' }, 452 452 group_by => [ 'me.id', 'pokemon_abilities.abilityid' ], -
veekun/trunk/lib/Vee/Schema/EvChains.pm
r350 r356 11 11 # My SOLE EXCEPTION to this is Manaphy, which is the base of its chain, but 12 12 # only because that's not a real chain anyway. 13 # NOTE AGAIN: 14 # Nevermind! base is now unused. Delete to your heart's content. 13 15 14 16 =head1 NAME
