diff --git a/ChangeLog b/ChangeLog index 04d865d34..cbeba25bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2020-08-22 Daniel Hawkins + * python/commands/dip.py: Make the water identified to avoid infinite identify xp. + 2020-08-16 Rick Tanner * world/world_120_110: Added the world map tile (world_120_110) diff --git a/python/commands/dip.py b/python/commands/dip.py index 6183f279f..57192ad37 100644 --- a/python/commands/dip.py +++ b/python/commands/dip.py @@ -24,6 +24,7 @@ def dip(pl): if ob.ArchName == "wbottle_empty": ob.Quantity -= 1 w = Crossfire.CreateObjectByName("water") + w.Identified = 1 w.InsertInto(pl) pl.Message("You fill the %s with water from the %s." % (name_before, f.Name)) else: