MRMJ-1: Messenger & Skills fixes

This commit is contained in:
Mind Rapist
2025-12-14 05:17:16 +02:00
parent da619922cb
commit 0f79d890ba
53 changed files with 1387 additions and 231 deletions

View File

@@ -7,6 +7,8 @@
#include "affect.h"
#include "shop_manager.h"
#include <cstdint>
int OnClickShop(TRIGGERPARAM);
int OnClickTalk(TRIGGERPARAM);
@@ -61,7 +63,8 @@ class FuncFindMobVictim
public:
FuncFindMobVictim(LPCHARACTER pkChr, int iMaxDistance) :
m_pkChr(pkChr),
m_iMinDistance(~(1L << 31)),
//m_iMinDistance(~(1L << 31)),
m_iMinDistance(INT32_MIN),
m_iMaxDistance(iMaxDistance),
m_lx(pkChr->GetX()),
m_ly(pkChr->GetY()),