Jeck - Added custom booster packs (see miki), numerous small fixes. Once we hit feature-freeze I'll be reviewing this stuff in depth, as again there's likely a lot of room for cleaning... just wanted to get it in first :).
I cut some bits out that weren't ready for SVN, hopefully I've committed everything correctly.
This commit is contained in:
@@ -50,13 +50,13 @@ void MTGCard::setMTGId(int id){
|
||||
}
|
||||
}
|
||||
|
||||
int MTGCard::getMTGId(){
|
||||
int MTGCard::getMTGId() const {
|
||||
return mtgid;
|
||||
}
|
||||
int MTGCard::getId(){
|
||||
int MTGCard::getId() const {
|
||||
return mtgid;
|
||||
}
|
||||
char MTGCard::getRarity(){
|
||||
char MTGCard::getRarity() const {
|
||||
return rarity;
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ void MTGCard::setRarity(char _rarity){
|
||||
rarity = _rarity;
|
||||
}
|
||||
|
||||
char * MTGCard::getImageName(){
|
||||
char * MTGCard::getImageName() {
|
||||
return image_name;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user