Skip to content

Commit

Permalink
comment changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aissurteivos committed Sep 24, 2015
1 parent b39cb50 commit 3a32b15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/itemspawn.h
Expand Up @@ -19,7 +19,6 @@ struct Category {

struct Item {
Item(const Category &category, double probability) : category(category), probability(probability) {}
Item(Item&&) = default;
const Category &category;
double probability;
};
Expand Down
15 changes: 10 additions & 5 deletions src/rom.cpp
Expand Up @@ -383,13 +383,18 @@ void ROM::randMoveset() {

const uint16_t excludedMoves[] = {
0x0000, //Null move
0x0163, //Regular attack, not a move
0x0164, //Debug move "is watching"
0x0165, //Debug bide
0x0166, //Debug revenge
0x0167, //Debug avalanche
0x0169, //Null move
0x016A, //Null move
0x016B, //Null move
0x016C, //Null move
0x016D, //Null move
0x01E6, //Null move
0x016F, //Null move
0x016B, //Orb move, "See-Trap"
0x016C, //Orb move, "Takeaway"
0x016D, //Orb move, "Rebound"
0x016E, //Unused move, "Bloop Slash"
0x016F, //Orb move, "Switcher"
0x0170, //Null move
0x0171, //Null move
0x0172, //Null move
Expand Down

0 comments on commit 3a32b15

Please sign in to comment.