From 285aaab102900af4cc15a4ad5a2553abd6577948 Mon Sep 17 00:00:00 2001 From: kts of kettek Date: Sun, 30 Jan 2022 12:55:10 -0800 Subject: [PATCH] Add comment --- Engine/src/data/animals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/src/data/animals.ts b/Engine/src/data/animals.ts index 3d4ff87..58cd772 100644 --- a/Engine/src/data/animals.ts +++ b/Engine/src/data/animals.ts @@ -11,7 +11,7 @@ export interface CreatureDefinition { acceleration: number maxSpeed: number turnRate: number - laziness: number // Laziness determines how often the creature wanders each time it decides if it should wander. 1 means it'll never act, 0 means it'll always act. + laziness: number // Laziness determines how often the creature wanders each time it decides if it should wander. 1 means it'll never act, 0 means it'll always act. laziness can also prevent immediate attacking when a monster is in range. noisiness: number // Noisness determines how likely the creature randomly will make noise. erratic: number // Erratic determines how likely the creature will randomly change direction while running. health: number