Disable Fiesta mode for now

main
Síle Ekaterin Liszka 2021-06-13 11:51:41 -05:00
parent 583e305103
commit 45cbfe3912
2 changed files with 6 additions and 0 deletions

View File

@ -150,6 +150,7 @@ void Exdeath::initRandom(void) {
chkRandom = new QCheckBox("Yes");
layRandom->addRow("Abilities:", chkRandom);
#if 0
chkFiesta = new QCheckBox("Yes");
layRandom->addRow("Fiesta:", chkFiesta);
@ -173,6 +174,7 @@ void Exdeath::initRandom(void) {
selModifier->addItem("Fifth Job", ModFifth);
//selModifier->addItem("Forbidden", ModVoid);
layRandom->addRow("Modifier:", selModifier);
#endif
}
void Exdeath::initInnates(void) {

View File

@ -25,7 +25,9 @@
#include "data.hh"
#include "randomizer.hh"
#if 0
#include "fiesta.hh"
#endif
class Exdeath : public QWidget {
public:
@ -65,10 +67,12 @@ private:
QSpinBox *numSeed;
QComboBox *selNED;
QCheckBox *chkRandom;
#if 0
QCheckBox *chkFiesta;
QComboBox *selFiesta;
QComboBox *selModifier;
//QCheckBox *chkVoid;
#endif
// Innate abilities
QGroupBox *grpInnates;