From bdf283ae4fdfe860b7fc2b1eb2245958711316b7 Mon Sep 17 00:00:00 2001 From: Gent S Date: Sun, 27 Dec 2020 09:23:43 -0500 Subject: [PATCH] Make heal nanos heal for the correct amount --- src/NanoManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NanoManager.cpp b/src/NanoManager.cpp index a86494c..b824523 100644 --- a/src/NanoManager.cpp +++ b/src/NanoManager.cpp @@ -671,7 +671,7 @@ bool doHeal(CNSocket *sock, sSkillResult_Heal_HP *respdata, int i, int32_t targe return false; } - int healedAmount = PC_MAXHEALTH(plr->level) * amount / 1500; + int healedAmount = PC_MAXHEALTH(plr->level) * amount / 1000; // do not heal dead players if (plr->HP <= 0)