X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/%7B%7Bdb.prefix%7D%7D/day?a=blobdiff_plain;f=roguelike-server;h=29fe11994b79c15bca1ac95536f788cb16345e21;hb=49679df70be008106ba63448b5ea66297c134bea;hp=c5b50db90d44aa18fece591748ca8435623383c2;hpb=9330c75f9ad159f7695e0e890e0ec07f3b12b260;p=plomrogue 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