diff --git a/src/map/map_const.hpp b/src/map/map_const.hpp index 109641d6bfe..d7274631ec1 100644 --- a/src/map/map_const.hpp +++ b/src/map/map_const.hpp @@ -9,8 +9,8 @@ #pragma once -static constexpr int32_t MAP_MAX_CLIENT_VIEW_PORT_X = 8; -static constexpr int32_t MAP_MAX_CLIENT_VIEW_PORT_Y = 6; +static constexpr int32_t MAP_MAX_CLIENT_VIEW_PORT_X = 16; +static constexpr int32_t MAP_MAX_CLIENT_VIEW_PORT_Y = 9; static constexpr int32_t MAP_MAX_VIEW_PORT_X = MAP_MAX_CLIENT_VIEW_PORT_X + 3; // min value: maxClientViewportX + 1 static constexpr int32_t MAP_MAX_VIEW_PORT_Y = MAP_MAX_CLIENT_VIEW_PORT_Y + 5; // min value: maxClientViewportY + 1 diff --git a/src/protobuf/appearances.proto b/src/protobuf/appearances.proto index ed924febfc4..a108e3fd20c 100644 --- a/src/protobuf/appearances.proto +++ b/src/protobuf/appearances.proto @@ -256,9 +256,9 @@ message AppearanceFlagCyclopedia { } message SpecialMeaningAppearanceIds { - optional uint32 gold_coin_id = 1; - optional uint32 platinum_coin_id = 2; - optional uint32 crystal_coin_id = 3; + optional uint32 copper_coin_id = 1; + optional uint32 silver_coin_id = 2; + optional uint32 gold_coin_id = 3; optional uint32 tibia_coin_id = 4; optional uint32 stamped_letter_id = 5; optional uint32 supply_stash_id = 6;