From c4bfe670c602ec498cc9ee9f6f7f430a353cdda0 Mon Sep 17 00:00:00 2001 From: TheJumper Date: Sat, 22 Feb 2014 01:29:50 +0100 Subject: Monster.cpp: Fixed Formatting in AddRandomUncommonDropItem --- src/Mobs/Monster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp index 66629474b..777b78c63 100644 --- a/src/Mobs/Monster.cpp +++ b/src/Mobs/Monster.cpp @@ -884,7 +884,7 @@ void cMonster::AddRandomUncommonDropItem(cItems & a_Drops, float a_Chance, short { MTRand r1; int Count = r1.randInt() % 1000; - if (Count < (a_Chance*10)) + if (Count < (a_Chance * 10)) { a_Drops.push_back(cItem(a_Item, 1, a_ItemHealth)); } -- cgit v1.2.3