From f1a587ec80c5e5dbcf0e92172da86a146edf17d1 Mon Sep 17 00:00:00 2001
From: Petr Fiser <priestcz@gmail.com>
Date: Mon, 14 Apr 2014 22:24:34 +0200
Subject: [PATCH] fixed horses appearing out of nowhere, ref #2684

---
 src/net/sf/freecol/common/model/IndianSettlement.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/net/sf/freecol/common/model/IndianSettlement.java b/src/net/sf/freecol/common/model/IndianSettlement.java
index b16d793..a217ea6 100644
--- a/src/net/sf/freecol/common/model/IndianSettlement.java
+++ b/src/net/sf/freecol/common/model/IndianSettlement.java
@@ -1165,7 +1165,7 @@ public class IndianSettlement extends Settlement {
      */
     public int getTotalProductionOf(GoodsType type) {
         if (type.isRefined()) {
-            if (type != goodsToMake()) return 0;
+            if (type.isBreedable() || type != goodsToMake()) return 0;
             // Pretend 1/3 of the units present make the item with
             // basic production of 3.
             return getUnitCount();
-- 
1.7.11.msysgit.0

