From: Christian Heller Date: Sat, 14 Mar 2015 03:14:06 +0000 (+0100) Subject: Enhance sanity of get_inventory_slot_to_consume. X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=49679df70be008106ba63448b5ea66297c134bea Enhance sanity of get_inventory_slot_to_consume. --- diff --git a/roguelike-server b/roguelike-server index c5b50db..29fe119 100755 --- a/roguelike-server +++ b/roguelike-server @@ -1310,16 +1310,20 @@ def standing_on_food(t): def get_inventory_slot_to_consume(t): - """Return slot Id of strongest consumable in t's inventory, else -1.""" - cmp_food = 0 + """Return slot Id of healthiest consumable in t's inventory, else -1.""" + cmp_food = -1 selection = -1 i = 0 for id in t["T_CARRIES"]: type = world_db["Things"][id]["T_TYPE"] if world_db["ThingTypes"][type]["TT_TOOL"] == "food" \ - and world_db["ThingTypes"][type]["TT_TOOLPOWER"] > cmp_food: - cmp_food = world_db["ThingTypes"][type]["TT_TOOLPOWER"] - selection = i + and world_db["ThingTypes"][type]["TT_TOOLPOWER"]: + nutvalue = world_db["ThingTypes"][type]["TT_TOOLPOWER"] + tmp_cmp = abs(t["T_SATIATION"] + nutvalue) + if (cmp_food < 0 and tmp_cmp < abs(t["T_SATIATION"])) \ + or tmp_cmp < cmp_food: + cmp_food = tmp_cmp + selection = i i += 1 return selection