Skip to content

Commit

Permalink
Merge pull request #10 from tbamud/master
Browse files Browse the repository at this point in the history
Merge with upstream: Add missing lookup for flags in read_ibt (tbamud#128)
  • Loading branch information
prool authored Mar 3, 2024
2 parents bd06c32 + 5da67dd commit e82a254
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/ibt.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,13 @@ static IBT_DATA *read_ibt( char *filename, FILE *fp )
}
break;

case 'F':
if (!str_cmp(word, "Flags")) {
fMatch = TRUE;
fread_flags(fp, ibtData->flags, 4);
}
break;

case 'I':
TXT_KEY("IdNum", id_num, fread_line(fp));
break;
Expand Down

0 comments on commit e82a254

Please sign in to comment.