diff --git a/patches.qrc b/patches.qrc index 7054e77..8b9b994 100644 --- a/patches.qrc +++ b/patches.qrc @@ -3,6 +3,8 @@ patches/fiesta.ips patches/balance.ips + patches/custom_classes.ips + patches/cc_spellblade.ips patches/portraits.ips patches/double_ap.ips patches/sound_restoration.ips diff --git a/patches/cc_spellblade.ips b/patches/cc_spellblade.ips new file mode 100644 index 0000000..7022142 Binary files /dev/null and b/patches/cc_spellblade.ips differ diff --git a/patches/custom_classes.ips b/patches/custom_classes.ips new file mode 100644 index 0000000..d3a5922 Binary files /dev/null and b/patches/custom_classes.ips differ diff --git a/src/exdeath.cc b/src/exdeath.cc index fee36b9..c2ed215 100644 --- a/src/exdeath.cc +++ b/src/exdeath.cc @@ -9,7 +9,7 @@ * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * * Neither the name of the nor the + * * Neither the name of the software nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * @@ -50,10 +50,12 @@ Exdeath::Exdeath(QWidget *parent) : QWidget(parent) { radBase = new QRadioButton("Base"); radFiesta = new QRadioButton("Fiesta"); radBalance = new QRadioButton("Balance"); + radCClass = new QRadioButton("Custom Classes"); radBase->setChecked(true); layMode->addWidget(radBase); layMode->addWidget(radFiesta); layMode->addWidget(radBalance); + layMode->addWidget(radCClass); chkPortraits = new QCheckBox("Yes"); chkAP = new QCheckBox("Yes"); @@ -113,6 +115,9 @@ void Exdeath::btnApply_clicked(bool trigger) { patches << ":/patches/fiesta.ips"; } else if (radBalance->isChecked()) { patches << ":/patches/balance.ips"; + } else if (radCClass->isChecked()) { + patches << ":/patches/custom_classes.ips"; + patches << ":/patches/cc_spellblade.ips"; } if (chkPortraits->isChecked()) { patches << ":/patches/portraits.ips"; diff --git a/src/exdeath.hh b/src/exdeath.hh index 44719d9..0defa5c 100644 --- a/src/exdeath.hh +++ b/src/exdeath.hh @@ -40,6 +40,7 @@ private: QRadioButton *radBase; QRadioButton *radFiesta; QRadioButton *radBalance; + QRadioButton *radCClass; QCheckBox *chkPortraits; QCheckBox *chkAP; diff --git a/src/main.cc b/src/main.cc index 41b9a11..0e3a28b 100644 --- a/src/main.cc +++ b/src/main.cc @@ -9,7 +9,7 @@ * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * * Neither the name of the nor the + * * Neither the name of the software nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. *