- 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:
@@ -30,6 +30,7 @@
|
||||
#include "cCriticalSection.h"
|
||||
#include "cWorldGenerator.h"
|
||||
#include "cBlockToPickup.h"
|
||||
#include "MersenneTwister.h"
|
||||
|
||||
#include "packets/cPacket_DestroyEntity.h"
|
||||
#include "packets/cPacket_PreChunk.h"
|
||||
@@ -333,11 +334,11 @@ void cChunk::Tick(float a_Dt)
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
MTRand r1;
|
||||
// Tick dem blocks
|
||||
int RandomX = rand();
|
||||
int RandomY = rand();
|
||||
int RandomZ = rand();
|
||||
int RandomX = r1.randInt();
|
||||
int RandomY = r1.randInt();
|
||||
int RandomZ = r1.randInt();
|
||||
|
||||
for(int i = 0; i < 50; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user