aboutsummaryrefslogtreecommitdiff
path: root/src/entities/maresciallo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/maresciallo.c')
-rw-r--r--src/entities/maresciallo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/entities/maresciallo.c b/src/entities/maresciallo.c
index 4b6ce03..a98919b 100644
--- a/src/entities/maresciallo.c
+++ b/src/entities/maresciallo.c
@@ -11,6 +11,8 @@ void initMaresciallo(Entity * entity, Game * game) {
entity->transformedCollisionModel = entityCreateCollisionModel(*entity->model);
setEntityRadius(entity);
+ entity->health = 0.75;
+
// Allocate data.
entity->data = KF_MALLOC(sizeof(Maresciallo));
@@ -25,7 +27,7 @@ void initMaresciallo(Entity * entity, Game * game) {
data->timeSinceLastMissileShot = GetTime();
PIDConfig flyToPointPID = (PIDConfig){
- .kP = 1.1,
+ .kP = 1.5,
.kI = 0.0,
.kD = 0.0,
.angleMode = false,