X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmap_object_actions.h;h=0d594d324d0f3a709e76ed3f3b5307ba48573b0b;hb=89c4ab4e0d6d7bb9d51d6714afae52603b465fc0;hp=bccd6a8a2a4ae5cca22a3f87402019c1414db176;hpb=97d23e7656f4c5e634b789fc760183edd7fd581e;p=plomrogue diff --git a/src/map_object_actions.h b/src/map_object_actions.h index bccd6a8..0d594d3 100644 --- a/src/map_object_actions.h +++ b/src/map_object_actions.h @@ -18,7 +18,7 @@ struct MapObjAct struct MapObjAct * next; uint8_t id; /* unique id of map object action */ char * name; /* human-readable identifier */ - uint8_t effort; /* how many turn the action takes */ + uint8_t effort; /* how many turns the action takes */ void (* func) (struct MapObj *); /* function called after .effort turns */ }; @@ -50,7 +50,7 @@ extern void actor_drop(struct MapObj * mo); extern void actor_pick(struct MapObj * mo); /* Actor "mo" tries to use inventory object indexed by number mo->args. - * (Currently the only valid use is consuming "MAGIC MEAT". + * (Currently the only valid use is consuming "MAGIC MEAT".) */ extern void actor_use(struct MapObj * mo);