- Linux compatible fixes including updated makefile
- Mersenne Twister still says uint32 but it's now signed for compatibility with random uses needing negative values - Server seed is sent to clients, but needs to be able to be signed long long later on for authentic reasons - Protocol Version is required to match to ensure client compatibility, this should probably have a settings.ini check as well as store the value there git-svn-id: http://mc-server.googlecode.com/svn/trunk@121 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
#include "Vector3f.h"
|
||||
#include "cPlayer.h"
|
||||
#include "MersenneTwister.h"
|
||||
|
||||
|
||||
cAggressiveMonster::cAggressiveMonster()
|
||||
@@ -58,7 +59,8 @@ void cAggressiveMonster::Tick(float a_Dt)
|
||||
|
||||
if(m_SeePlayerInterval > 1)
|
||||
{
|
||||
int rem = rand() % 3 + 1; //check most of the time but miss occasionally
|
||||
MTRand r1;
|
||||
int rem = r1.randInt() % 3 + 1; //check most of the time but miss occasionally
|
||||
|
||||
m_SeePlayerInterval = 0.0;
|
||||
if(rem >= 2)
|
||||
|
||||
Reference in New Issue
Block a user