Disable Fiesta mode for now
parent
583e305103
commit
45cbfe3912
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue