reminder msg

This commit is contained in:
ntr 2019-11-04 18:02:51 +11:00
parent 25b89da5c4
commit f0c0ce7dd1
2 changed files with 27 additions and 21 deletions

View File

@ -1,4 +1,5 @@
module.exports = { // This will need to be edited if we change server recipes
// This will need to be edited if we change server recipes
module.exports = {
// Attack
Strike: () => 'red-border',
Blast: () => 'blue-border',

View File

@ -943,6 +943,11 @@ impl Item {
}
}
// !!!!!!
// IF YOU CHANGE A COMBO
// BE SURE TO EDIT BUTTONS.JSX TOO
// !!!!!!
fn combo(&self) -> Vec<Item> {
match self {
Item::Intercept => vec![Item::Buff, Item::Red, Item::Red],