This commit is contained in:
zaoqi 2017-08-28 23:03:24 +08:00
parent 1c077c819b
commit f495b09fcb
2 changed files with 3 additions and 1 deletions

View File

@ -93,7 +93,7 @@ Client::Client(
m_chosen_auth_mech(AUTH_MECHANISM_NONE),
m_media_downloader(new ClientMediaDownloader()),
m_state(LC_Created),
m_game_ui_flags(game_ui_flags)
m_game_ui_flags(game_ui_flags),
can_fast_move(false),
can_not_send_pos(false),
have_last_punch_object(false)

View File

@ -568,6 +568,8 @@ public:
bool have_last_punch_object;
PointedThing last_punch_object;
void writePlayerPos(LocalPlayer *myplayer, ClientMap *clientMap, NetworkPacket *pkt, bool can_not);
void sendPlayerPos();
private: