From 4850c9d042f85f54025ba528fe987f390c344dcc Mon Sep 17 00:00:00 2001 From: David Gay Date: Wed, 7 Jul 2021 21:46:13 -0400 Subject: Give bollyrots and crypt writhes double the damage capacity at night --- app/lib/activity_processor.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/lib') diff --git a/app/lib/activity_processor.rb b/app/lib/activity_processor.rb index cca2185..5d80b15 100644 --- a/app/lib/activity_processor.rb +++ b/app/lib/activity_processor.rb @@ -271,8 +271,9 @@ class ActivityProcessor dealt_damage = {} actor.damage_ranges.each do |data| + dealt_damage[data[:gid]] ||= 0 damage_roll = rand(data[:min]..data[:max]) - dealt_damage[data[:gid]] = damage_roll + dealt_damage[data[:gid]] += damage_roll end # If you can't do damage any other way, hit 'em with your fists! -- cgit v1.2.3