Don't enable HC on minigame worlds (#959)

* Fix max's ouchi

* use smarter logic

* fix whitespace

* clone
This commit is contained in:
Aaron Kimbrell 2023-01-20 01:50:46 -06:00 committed by GitHub
parent 14085d09bd
commit 6fd80e3117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,6 +69,10 @@ void EntityManager::Initialize() {
m_HardcoreUscoreEnemiesMultiplier = hcUscoreMult.empty() ? 2 : std::stoi(hcUscoreMult);
auto hcDropInv = Game::config->GetValue("hardcore_dropinventory_on_death");
m_HardcoreDropinventoryOnDeath = hcDropInv.empty() ? false : (hcDropInv == "1");
// If cloneID is not zero, then hardcore mode is disabled
// aka minigames and props
if (dZoneManager::Instance()->GetZoneID().GetCloneID() != 0) m_HardcoreMode = false;
}
EntityManager::~EntityManager() {