Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/const.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#ifndef FS_CONST_H
#define FS_CONST_H

static constexpr int32_t NETWORKMESSAGE_MAXSIZE = 24590;
static constexpr int32_t NETWORKMESSAGE_MAXSIZE = 40000;
static constexpr int32_t MIN_MARKET_FEE = 20;
static constexpr int32_t MAX_MARKET_FEE = 100000;

Expand Down
8 changes: 4 additions & 4 deletions src/map.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ class QTreeLeafNode final : public QTreeNode
class Map
{
public:
static constexpr int32_t maxViewportX = 11; // min value: maxClientViewportX + 1
static constexpr int32_t maxViewportY = 11; // min value: maxClientViewportY + 1
static constexpr int32_t maxClientViewportX = 8;
static constexpr int32_t maxClientViewportY = 6;
static constexpr int32_t maxViewportX = 33; //min value: maxClientViewportX + 1
static constexpr int32_t maxViewportY = 19; //min value: maxClientViewportY + 1
static constexpr int32_t maxClientViewportX = 32;
static constexpr int32_t maxClientViewportY = 18;

uint32_t clean() const;

Expand Down