Skip to content

Commit

Permalink
extended view support
Browse files Browse the repository at this point in the history
  • Loading branch information
vllworldbuilding committed Oct 24, 2024
1 parent c9d9782 commit d1cdfc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/map/map_const.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions src/protobuf/appearances.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d1cdfc1

Please sign in to comment.