mirror of
https://github.com/XProger/OpenLara.git
synced 2025-08-11 23:54:09 +02:00
fix bite AV
This commit is contained in:
@@ -307,7 +307,7 @@ struct Enemy : Character {
|
|||||||
void bite(int joint, const vec3 &offset, float damage) {
|
void bite(int joint, const vec3 &offset, float damage) {
|
||||||
ASSERT(target);
|
ASSERT(target);
|
||||||
target->hit(damage, this);
|
target->hit(damage, this);
|
||||||
game->addEntity(TR::Entity::BLOOD, target->getRoomIndex(), target->getJoint(joint) * offset);
|
game->addEntity(TR::Entity::BLOOD, target->getRoomIndex(), getJoint(joint) * offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
Mood getMoodFixed() {
|
Mood getMoodFixed() {
|
||||||
|
Reference in New Issue
Block a user