Death fix
This commit is contained in:
@@ -26,10 +26,7 @@ It builds as it is, without external dependencies.
|
||||
## 📋 Changelog
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
- **Refinement**: Fixed refinement by item (scroll/stone)
|
||||
|
||||
### ⬆️ Improvements
|
||||
- **Refinement**: Updated translations for the refinement dialogs and added conditional failed messages (from official)
|
||||
- **Death**: Fixed mobs attacking player's corpse, player regenerating HP while dead and revive functionality
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
@@ -1659,8 +1659,10 @@ void CHARACTER::EnterCombat()
|
||||
if (!IsPC())
|
||||
return;
|
||||
|
||||
if (!IsPosition(POS_FIGHTING))
|
||||
// MR-18: Fix mobs attacking corpse
|
||||
if (!IsPosition(POS_FIGHTING) && !IsPosition(POS_DEAD))
|
||||
SetPosition(POS_FIGHTING);
|
||||
// MR-18: -- END OF -- Fix mobs attacking corpse
|
||||
|
||||
// MR-3: Cancel logout on use skill
|
||||
if (m_pkTimedEvent)
|
||||
|
||||
Reference in New Issue
Block a user