From b8e5cad380514a85e0e77a2a8846c38a56b1ba04 Mon Sep 17 00:00:00 2001 From: dart Date: Sun, 3 Apr 2022 15:11:14 +0300 Subject: [PATCH] add addTime feature --- ldjam50/Assets/Scripts/Mob.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ldjam50/Assets/Scripts/Mob.cs b/ldjam50/Assets/Scripts/Mob.cs index 274ce1e..aa64869 100644 --- a/ldjam50/Assets/Scripts/Mob.cs +++ b/ldjam50/Assets/Scripts/Mob.cs @@ -114,5 +114,6 @@ public void SetupMob(OverMind.MobParameters mobParameters) overMind = mobParameters.OverMind; health = mobParameters.Health; damage = mobParameters.Damage; + mobAddedTime = mobParameters.AddedTime; } }