diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-11-15 16:25:54 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-11-15 16:25:54 -0700 |
commit | 581ea4aaf1acefa663446faa32a480bbcc3e084c (patch) | |
tree | 47e05bab3da699d707d0af089f8b8287fbda38fd /src/entity.c | |
parent | 22535c8b18cda1d5a1ee771616425fc3941a801c (diff) |
Kill log only shows stuff you killed
Diffstat (limited to 'src/entity.c')
-rw-r--r-- | src/entity.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.c b/src/entity.c index 7fbf966..a44220a 100644 --- a/src/entity.c +++ b/src/entity.c @@ -62,6 +62,7 @@ Entity createEntity(EntityType type, Game * game) { .updateCb = info.updateCb, .drawCb = info.drawCb, .health = ENTITY_MAX_HEALTH, + .killedByPlayer = false, .follow = (EntityFollow){ .leaderId = ENTITY_NONE, .followerId = ENTITY_NONE |