Ok, im converting the room_flags to extended bit vectors but i have come across some issues.
In do_rset() in the if check which deals with adding flags to the room, the line:
location->room_flags = value;
I do not know how to make 'value' compatible with the new EXT_BV room_flags. I've tried:
meb(&location->room_flags) = value;
But this gives an integer from pointer without a cast...
Any ideas..?
In do_rset() in the if check which deals with adding flags to the room, the line:
location->room_flags = value;
I do not know how to make 'value' compatible with the new EXT_BV room_flags. I've tried:
meb(&location->room_flags) = value;
But this gives an integer from pointer without a cast...
Any ideas..?