Figured I'd post this here as I see others have run into this issue as well.

In OnLootSpawn change
item.amount *= Convert.ToInt32(multiplier); to
item.amount = (int)Math.Ceiling(item.amount * Convert.ToSingle(multiplier));