| 144 | //------------------------------------------------------------------------------ |
| 145 | |
| 146 | void MissionArea::unpackUpdate(NetConnection *, BitStream * stream) |
| 147 | { |
| 148 | // ghost (initial) and regular updates share flag.. |
| 149 | if(stream->readFlag()) |
| 150 | { |
| 151 | mathRead(*stream, &mArea); |
| 152 | stream->read(&mFlightCeiling); |
| 153 | stream->read(&mFlightCeilingRange); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | U32 MissionArea::packUpdate(NetConnection *, U32 mask, BitStream * stream) |
| 158 | { |