gamebase mmebervar cleanups. mPacked in particular is likely to geta followup for other cleaning.

This commit is contained in:
Azaezel 2018-03-28 23:41:47 -05:00
parent 317cd9151a
commit 7064b41506
18 changed files with 38 additions and 38 deletions

View file

@ -326,15 +326,15 @@ void afxMagicSpellData::packData(BitStream* stream)
stream->writeFlag(do_move_interrupts);
stream->write(move_interrupt_speed);
writeDatablockID(stream, missile_db, packed);
writeDatablockID(stream, missile_db, mPacked);
stream->write(launch_on_server_signal);
stream->write(primary_target_types);
pack_fx(stream, casting_fx_list, packed);
pack_fx(stream, launch_fx_list, packed);
pack_fx(stream, delivery_fx_list, packed);
pack_fx(stream, impact_fx_list, packed);
pack_fx(stream, linger_fx_list, packed);
pack_fx(stream, casting_fx_list, mPacked);
pack_fx(stream, launch_fx_list, mPacked);
pack_fx(stream, delivery_fx_list, mPacked);
pack_fx(stream, impact_fx_list, mPacked);
pack_fx(stream, linger_fx_list, mPacked);
}
void afxMagicSpellData::unpackData(BitStream* stream)