Browse Source

Fix for returning auction bids, tnx gnat.

_DS_ 16 years ago
parent
commit
e7602225d4

+ 1 - 1
L2_GameServer/java/net/sf/l2j/gameserver/model/entity/Auction.java

@@ -429,7 +429,7 @@ public class Auction
 		for (Bidder b : _bidders.values())
 		{
 			if (ClanTable.getInstance().getClanByName(b.getClanName()).getHasHideout() == 0)
-				returnItem(b.getClanName(), 57, 9 * b.getBid() / 10, false); // 10 % tax
+				returnItem(b.getClanName(), 57, b.getBid(), true); // 10 % tax
 			else
 			{
 				if (L2World.getInstance().getPlayer(b.getName()) != null)