Rename SOMETHING -> server_random_seed. (from 2013 SDK).

Add to copy ctor and Reset().
This commit is contained in:
Nicholas Hastings 2016-07-03 08:05:34 -04:00
parent dff278d1dd
commit d42150030e

View File

@ -52,6 +52,9 @@ public:
weaponselect = 0; weaponselect = 0;
weaponsubtype = 0; weaponsubtype = 0;
random_seed = 0; random_seed = 0;
#ifndef CLIENT_DLL
server_random_seed = 0;
#endif
mousedx = 0; mousedx = 0;
mousedy = 0; mousedy = 0;
@ -98,6 +101,9 @@ public:
weaponselect = src.weaponselect; weaponselect = src.weaponselect;
weaponsubtype = src.weaponsubtype; weaponsubtype = src.weaponsubtype;
random_seed = src.random_seed; random_seed = src.random_seed;
#ifndef CLIENT_DLL
server_random_seed = src.server_random_seed;
#endif
mousedx = src.mousedx; mousedx = src.mousedx;
mousedy = src.mousedy; mousedy = src.mousedy;
@ -203,7 +209,7 @@ public:
int random_seed; // For shared random functions int random_seed; // For shared random functions
#ifndef CLIENT_DLL #ifndef CLIENT_DLL
int SOMETHING; int server_random_seed;
#endif #endif
short mousedx; // mouse accum in x from create move short mousedx; // mouse accum in x from create move