Skip to content

Commit

Permalink
chore: rectify omissions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lovelylavender4 committed Feb 8, 2024
1 parent 4c36252 commit 6069c1a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ll/test/customWorldGenerator/MyFlatWorldGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@

class MyFlatWorldGenerator : public WorldGenerator {
public:
std::vector<Block const*> mPrototypeBlocks; // this+0x90
BlockVolume mPrototype; // this+0xA8
Biome const* mBiome; // this+0xD0
std::unique_ptr<FixedBiomeSource> mBiomeSource; // this+0xD8
uint mSeed;
int mPostProcessCallCount;
std::vector<Block const*> mPrototypeBlocks; // this+0x90
BlockVolume mPrototype; // this+0xA8
Biome const* mBiome; // this+0xD0
std::unique_ptr<FixedBiomeSource> mBiomeSource; // this+0xD8
uint mSeed; // this+0xE0
int mPostProcessCallCount; // this+0xE4

public:
MyFlatWorldGenerator(Dimension& dimension, uint seed, Json::Value value)
Expand Down Expand Up @@ -169,7 +169,7 @@ class MyFlatWorldGenerator : public WorldGenerator {
return {mPrototype.mWidth, mPrototype.mDepth, mPrototype.mHeight};
}

virtual BlockPos WorldGenerator::findSpawnPosition() const { return {0, 0x7FFF}; }
virtual BlockPos findSpawnPosition() const { return {0, 0x7FFF}; }

virtual void decorateWorldGenLoadChunk(Biome&, LevelChunk&, BlockVolumeTarget&, Random&, const ChunkPos&) const {}

Expand Down

0 comments on commit 6069c1a

Please sign in to comment.