From a690d5d6085c56ff86ccd8e85d62170a52e2bf36 Mon Sep 17 00:00:00 2001 From: Sheila Aman Date: Thu, 10 Jun 2021 18:18:52 -0500 Subject: [PATCH] Fix some monster names. 1. W*nd*go is cultural appropriation and was never accurate. 2. 'Alte Roite' has been bugging me for literally years. --- patches.qrc | 1 + patches/fixnames.ips | Bin 0 -> 35 bytes src/exdeath.cc | 3 +++ 3 files changed, 4 insertions(+) create mode 100644 patches/fixnames.ips diff --git a/patches.qrc b/patches.qrc index 6c2b726..212b671 100644 --- a/patches.qrc +++ b/patches.qrc @@ -1,6 +1,7 @@ + patches/fixnames.ips patches/unlock.ips patches/balance.ips patches/custom_classes.ips diff --git a/patches/fixnames.ips b/patches/fixnames.ips new file mode 100644 index 0000000000000000000000000000000000000000..7231e2bc71736f23dde81c37af858daa62f48aff GIT binary patch literal 35 qcmWG=3~~0bmYc%BF3-fwCCSKcEkBKc%aDtQL6e!4fq}u*-wgn0&IJGf literal 0 HcmV?d00001 diff --git a/src/exdeath.cc b/src/exdeath.cc index e714f44..7c56cd0 100644 --- a/src/exdeath.cc +++ b/src/exdeath.cc @@ -321,6 +321,9 @@ void Exdeath::btnApply_clicked(bool trigger) { std::mt19937 rand(numSeed->value()); std::uniform_int_distribution<> dist(1, selNED->count() - 1); + // Unconditionally include this patch. + patches << ":/patches/fixnames.ips"; + if (mode > 0) { patches << ":/patches/" + selMode->itemData(mode).toString(); }