diff --git a/server/gameserver/gamelog.cc b/server/gameserver/gamelog.cc index 65c8e39..04993b3 100644 --- a/server/gameserver/gamelog.cc +++ b/server/gameserver/gamelog.cc @@ -24,7 +24,7 @@ void GameLog::GameStart(Player* hum) prop->SetVal("account_register_utctime", hum->account_registertime); prop->SetVal("account_register_date", a8::TimestampToDateTime(hum->account_registertime)); prop->SetVal("game_uniid", a8::XValue(hum->room->GetRoomUuid()).GetString()); - prop->SetVal("game_type", a8::XValue(hum->room->GetRoomType()).GetString()); + prop->SetVal("room_type", a8::XValue(hum->room->GetRoomType()).GetString()); //prop->SetVal("game_param", ""); prop->SetVal("nickname", hum->name); //prop->SetVal("localuuid", ""); @@ -59,7 +59,7 @@ void GameLog::GameEnd(Player* hum) prop->SetVal("account_register_utctime", hum->account_registertime); prop->SetVal("account_register_date", a8::TimestampToDateTime(hum->account_registertime)); prop->SetVal("game_uniid", a8::XValue(hum->room->GetRoomUuid()).GetString()); - prop->SetVal("game_type", a8::XValue(hum->room->GetRoomType()).GetString()); + prop->SetVal("room_type", a8::XValue(hum->room->GetRoomType()).GetString()); //prop->SetVal("game_param", ""); prop->SetVal("game_gold", hum->stats.gold); prop->SetVal("game_score", hum->stats.score);