X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Factions.py;h=7f1f657452ea00a30a044c783b868f34593ac24a;hb=c29d6ff72609528521634104c636658325a07796;hp=5492dbe97b2f9bbcb62cb79b5cbe4b852b9ba181;hpb=26b0310b0c61804a781149032818d1c6f9b47fd9;p=plomrogue diff --git a/server/actions.py b/server/actions.py index 5492dbe..7f1f657 100644 --- a/server/actions.py +++ b/server/actions.py @@ -79,7 +79,7 @@ def actor_pickup(t): return world_db["Things"][id] def actor_drop(t): - """Make t rop Thing from inventory to ground indexed by T_ARGUMENT.""" + """Drop to ground from t's inventory, return T_ARGUMENT-indexed Thing.""" # TODO: Handle case where T_ARGUMENT matches nothing. if len(t["T_CARRIES"]): id = t["T_CARRIES"][t["T_ARGUMENT"]] @@ -87,7 +87,7 @@ def actor_drop(t): world_db["Things"][id]["carried"] = False if t == world_db["Things"][0]: log("You DROP an object.") - + return world_db["Things"][id] def actor_use(t): """Make t use (for now: consume) T_ARGUMENT-indexed Thing in inventory."""