diff options
Diffstat (limited to 'src/Mobs/Rabbit.cpp')
-rw-r--r-- | src/Mobs/Rabbit.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Mobs/Rabbit.cpp b/src/Mobs/Rabbit.cpp index d0d2fe4c1..01854af19 100644 --- a/src/Mobs/Rabbit.cpp +++ b/src/Mobs/Rabbit.cpp @@ -10,9 +10,12 @@ cRabbit::cRabbit(void) : - cRabbit(static_cast<eRabbitType>(GetRandomProvider().RandInt<UInt8>( - static_cast<UInt8>(eRabbitType::SaltAndPepper) // Max possible Rabbit-Type - )), 0) + cRabbit( + static_cast<eRabbitType>(GetRandomProvider().RandInt<UInt8>( + static_cast<UInt8>(eRabbitType::SaltAndPepper) // Max possible Rabbit-Type + )), + 0 + ) { } @@ -49,4 +52,3 @@ void cRabbit::GetDrops(cItems & a_Drops, cEntity * a_Killer) RareDrops.Add(cItem(E_ITEM_RABBITS_FOOT)); AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel); } - |