From a1d70830983bab66d99a6d515a3b717dcce6fcb1 Mon Sep 17 00:00:00 2001 From: xavier Date: Fri, 10 Dec 2010 20:36:25 +0000 Subject: [PATCH] --- Scripts/Items/Skill Items/Magical/Potions/BasePotion.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Items/Skill Items/Magical/Potions/BasePotion.cs b/Scripts/Items/Skill Items/Magical/Potions/BasePotion.cs index 49a8c021f..d57a9af86 100644 --- a/Scripts/Items/Skill Items/Magical/Potions/BasePotion.cs +++ b/Scripts/Items/Skill Items/Magical/Potions/BasePotion.cs @@ -99,7 +99,7 @@ namespace Server.Items { if (!RequireFreeHand || HasFreeHand(from)) { - if (Amount > 1) + if (this is BaseExplosionPotion && Amount > 1) { BasePotion pot = (BasePotion)Activator.CreateInstance(this.GetType()); @@ -118,7 +118,7 @@ namespace Server.Items pot.Drink( from ); } } - else if( Amount == 1 ) + else { this.Drink( from ); }