X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fthings.h;h=4c21c451f6d3730ae5c2eecded046daa4173431b;hb=eff209c8fe5a74ba54efae4fbc58875dc6fabbf1;hp=4b9291cc4895bdb96868584d89fe18964e3c9636;hpb=edebb2bf9aa780ee2f7006c1d2be9168564d34df;p=plomrogue diff --git a/src/server/things.h b/src/server/things.h index 4b9291c..4c21c45 100644 --- a/src/server/things.h +++ b/src/server/things.h @@ -18,8 +18,8 @@ struct Thing uint8_t id; /* individual thing's unique identifier */ struct Thing * owns; /* chain of things owned / in inventory */ struct yx_uint8 pos; /* coordinate on map */ - uint8_t * fov_map; /* map of the thing's field of view */ - uint8_t * mem_map; /* map knowledge of thing by FOV and memory */ + char * fov_map; /* map of the thing's field of view */ + char * mem_map; /* map knowledge of thing by FOV and memory */ uint8_t type; /* ID of appropriate thing definition */ uint8_t lifepoints; /* 0: thing is inanimate; >0: hitpoints */ uint8_t command; /* thing's current action; 0 if none */