Changeset 233 for binary-improvements/7dtd-server-fixes/src/API.cs
- Timestamp:
- Apr 30, 2015, 1:55:16 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/API.cs
r232 r233 13 13 } 14 14 15 public override void SavePlayerData ( int _clientId, PlayerDataFile _playerDataFile) {16 PlayerDataStuff.GM_SavePlayerData (_c lientId, _playerDataFile);15 public override void SavePlayerData (ClientInfo _cInfo, PlayerDataFile _playerDataFile) { 16 PlayerDataStuff.GM_SavePlayerData (_cInfo, _playerDataFile); 17 17 } 18 18 19 public override void PlayerLogin ( int _clientId, string _name, string _playerId, string _token, string _compatibilityVersion) {19 public override void PlayerLogin (ClientInfo _cInfo, string _compatibilityVersion) { 20 20 } 21 21 22 public override void PlayerSpawning ( int _clientId, string _name, int _chunkViewDim, PlayerProfile _playerProfile) {23 AllocsLogFunctions.RequestToSpawnPlayer (_c lientId, _name, _chunkViewDim, _playerProfile);22 public override void PlayerSpawning (ClientInfo _cInfo, int _chunkViewDim, PlayerProfile _playerProfile) { 23 AllocsLogFunctions.RequestToSpawnPlayer (_cInfo, _chunkViewDim, _playerProfile); 24 24 } 25 25
Note:
See TracChangeset
for help on using the changeset viewer.