mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Use binary operators rather than "Python modulo" in decoding block positions
This commit is contained in:
@@ -34,8 +34,8 @@ public:
|
||||
|
||||
virtual void saveBlock(MapBlock *block)=0;
|
||||
virtual MapBlock* loadBlock(v3s16 blockpos)=0;
|
||||
s64 getBlockAsInteger(const v3s16 pos);
|
||||
v3s16 getIntegerAsBlock(s64 i);
|
||||
s64 getBlockAsInteger(const v3s16 pos) const;
|
||||
v3s16 getIntegerAsBlock(const s64 i) const;
|
||||
virtual void listAllLoadableBlocks(std::list<v3s16> &dst)=0;
|
||||
virtual int Initialized(void)=0;
|
||||
virtual ~Database() {};
|
||||
|
Reference in New Issue
Block a user