mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
Fix edge case for nano mission acquisition
This caused players to only get nano missions after exceeding the required FM instead of meeting it.
This commit is contained in:
parent
4c398895aa
commit
543d0a7afd
@ -432,7 +432,7 @@ void MissionManager::updateFusionMatter(CNSocket* sock, int fusion) {
|
||||
plr->fusionmatter = 0;
|
||||
|
||||
// check if it is enough for the nano mission
|
||||
if (plr->fusionmatter <= AvatarGrowth[plr->level]["m_iReqBlob_NanoCreate"])
|
||||
if (plr->fusionmatter < AvatarGrowth[plr->level]["m_iReqBlob_NanoCreate"])
|
||||
return;
|
||||
|
||||
// don't give the Blossom nano mission until the player's in the Past
|
||||
|
Loading…
Reference in New Issue
Block a user