Added questpoints to load_char, more 128 bit fixes, and set autoexit on by default. (Thanks Trulight) --Rumble

This commit is contained in:
Rumble 2007-06-25 13:27:20 +00:00
parent 254a746657
commit 62f74102af
6 changed files with 12 additions and 4 deletions

View file

@ -981,7 +981,7 @@ void oedit_parse(struct descriptor_data *d, char *arg)
if (number < 0 || number > 4)
oedit_disp_container_flags_menu(d);
else if (number != 0) {
TOGGLE_BIT(GET_OBJ_VAL(OLC_OBJ(d), 1), (number - 1));
TOGGLE_BIT(GET_OBJ_VAL(OLC_OBJ(d), 1), 1 << (number - 1));
OLC_VAL(d) = 1;
oedit_disp_val2_menu(d);
} else