opentibia / server

An open source server for the MMORPG Tibia.
GNU General Public License v2.0
414 stars 149 forks source link

Problems with uh paralyze #51

Open Pietia10 opened 9 years ago

Pietia10 commented 9 years ago

1.These two is creating problems with instant ultimate healing rune curing paralyze in actions.cpp player->setNextAction(OTSYS_TIME() + g_config.getNumber(ConfigManager::MIN_ACTIONEXTIME) + SCHEDULER_MINTICKS);

player->setNextAction(OTSYS_TIME() + g_config.getNumber(ConfigManager::MIN_ACTIONTIME) + SCHEDULER_MINTICKS);

You can set it under this to fix this if(ret != RET_NOERROR){ player->sendCancelMessage(ret); return false; }

OsoSangre commented 9 years ago

I'm not understanding the issue. Is it that when you are paralyzed and you heal immediately, there is no paralysis effect?

Pietia10 commented 9 years ago

when you heal immediately with ultimate healing rune there is no instant effect in opposition to for example utani hur. This fix fixes it.