- Fixed self_kills with colistion couted as teamkills.

-Added Landing_Other stat fild
This commit is contained in:
Szymon Porwolik
2019-03-10 23:42:29 +01:00
parent 5b3d19e134
commit c053d5d461
3 changed files with 8 additions and 3 deletions

View File

@@ -158,6 +158,8 @@ CREATE TABLE IF NOT EXISTS `pe_LogStats` (
`ps_ship_landings` int(11) UNSIGNED NOT NULL DEFAULT '0',
`ps_farp_takeoffs` int(11) UNSIGNED NOT NULL DEFAULT '0',
`ps_farp_landings` int(11) UNSIGNED NOT NULL DEFAULT '0',
`ps_other_landings` int(10) UNSIGNED NOT NULL DEFAULT '0',
`ps_other_takeoffs` int(10) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`pe_LogStats_id`),
UNIQUE KEY `UNIQUE_STATS_PER_MISSION_AND_UCID_AND_TYPE` (`pe_LogStats_playerid`,`pe_LogStats_missionhash_id`,`pe_LogStats_type`) USING BTREE,
KEY `pe_LogStats_type` (`pe_LogStats_type`)