Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-08-28 | Fix off-by-one causing archer attack mode to approach to within attack range - 1 | Fedja Beader | 1 | -2/+3 | |
**** mana/plus!96 | |||||
2024-08-27 | Redundant. I don't think the time savings due to not calculating distance, ↵ | Fedja Beader | 1 | -24/+3 | |
if any, are worth it. In fact, this might even save some time. Calculating distance may be faster than iterating through memory twice. **** mana/plus!95 | |||||
2024-03-11 | Put variable declarations into scope where they are used. | Fedja Beader | 1 | -3/+3 | |
**** Approved-by: Jesusalva Jesusalva <jesusalva@themanaworld.org> | |||||
2024-03-11 | Make pickup code go to nearby tile, not on top of item. | Fedja Beader | 1 | -4/+18 | |
Fixes most cases of walking through doors/warps on pickup. **** | |||||
2024-02-09 | Update copyright headers up to 2023 | Jesusalva Jesusalva | 1 | -1/+2 | |
2023-08-16 | Fix unable to pickup non-ignored items while standing on an ignored | Fedja Beader | 1 | -3/+2 | |
item. What happened: 1) The pickup code first tries to pickup first item under you without checking if it is ignored. 2) ::pickUp queries ratelimiter, which clears to send. 3) ::pickUp checks if item is ignored and bails out 4) The pickup code did not bail early, despite "success" of (1) and selects a non-ignored item to pick-up. 5) ::pickUp queries ratelimiter, which thinks that a packet has been sent in (2) and aborts. | |||||
2020-02-23 | Fix some code style issues | Andrei Karas | 1 | -1/+3 | |
2019-04-09 | Fix code style | Andrei Karas | 1 | -8/+16 | |
2019-04-08 | Add separate auto move sync distance for legacy servers | Andrei Karas | 1 | -2/+37 | |
2019-03-21 | Possible fix for desync in moving | Andrei Karas | 1 | -2/+35 | |
Handle player stop packet always. Check desync always if tile changed client side. Check desync always if server move response packet received. Removed unused configuration option. | |||||
2019-01-01 | Update copyright year. | Andrei Karas | 1 | -1/+1 | |
2018-11-27 | Remove extra ; from different code. | Andrei Karas | 1 | -9/+9 | |
2018-11-05 | Fix code style. | Andrei Karas | 1 | -3/+8 | |
2018-10-29 | Fix code style.s20181102 | Andrei Karas | 1 | -8/+8 | |
2018-03-04 | Add support for hightlight attribute in groups.xml | Andrei Karas | 1 | -6/+1 | |
This attribute allow to highlight gm groups based on groups.xml | |||||
2018-01-04 | Update copyrights year. | Andrei Karas | 1 | -1/+1 | |
2017-12-22 | Remove default parameters from userpalette. | Andrei Karas | 1 | -2/+2 | |
2017-12-22 | Remove default parameters from properties.h | Andrei Karas | 1 | -4/+4 | |
2017-12-22 | Remove default parameters from map. | Andrei Karas | 1 | -5/+15 | |
2017-12-17 | Remove default parameters from actormanager.cpp | Andrei Karas | 1 | -5/+5 | |
2017-12-17 | Remove default parameters from localplayer. | Andrei Karas | 1 | -17/+27 | |
2017-12-17 | Remove default parameter from PlayerInfo::setStatMod. | Andrei Karas | 1 | -1/+3 | |
2017-12-17 | Remove default parameter from PlayerInfo::setStatBase. | Andrei Karas | 1 | -1/+2 | |
2017-12-16 | Remove extra nextTile function from localplayer. | Andrei Karas | 1 | -1/+1 | |
2017-12-14 | Remove default parameters from soundmanager. | Andrei Karas | 1 | -2/+2 | |
2017-12-11 | Remove default parameters from ChatTab::chatLog. | Andrei Karas | 1 | -4/+13 | |
2017-10-18 | Add packet SMSG_PLAYER_GET_EXP2 0x0acc. | Andrei Karas | 1 | -10/+19 | |
2017-09-27 | Fix some issues with int64 to int32 implicit conversions. | Andrei Karas | 1 | -2/+2 | |
2017-09-27 | Change player job level, exp from stat object to attribute. | Andrei Karas | 1 | -20/+17 | |
2017-09-27 | Rename Attributes::PLAYER_LEVEL to Attributes::PLAYER_BASE_LEVEL. | Andrei Karas | 1 | -2/+2 | |
2017-09-27 | Change attributes value type to int64. | Andrei Karas | 1 | -3/+3 | |
2017-08-22 | Remove default patameter from LocalPlayer::setAction. | Andrei Karas | 1 | -7/+8 | |
2017-08-21 | Remove useless else. | Andrei Karas | 1 | -38/+28 | |
2017-08-14 | Replace static members usage from pointers to direct classes. | Andrei Karas | 1 | -6/+5 | |
clang-tidy warning: readability-static-accessed-through-instance | |||||
2017-07-12 | Move group id from localplayer to being. | Andrei Karas | 1 | -2/+1 | |
2017-07-12 | Rename gm level into group id in localplayer.cpp | Andrei Karas | 1 | -4/+4 | |
2017-07-12 | Add packet SMSG_PLAYER_ATTRS 0x0b25. | Andrei Karas | 1 | -2/+6 | |
It allow set local player attributes from server. For now it send real group id. | |||||
2017-06-29 | Move foreach macroses into separate file. | Andrei Karas | 1 | -0/+1 | |
2017-06-13 | Move virtual methods from Being constructor to postInit. | Andrei Karas | 1 | -2/+3 | |
2017-06-11 | Rename player_relations into playerRelations. | Andrei Karas | 1 | -2/+2 | |
2017-06-09 | Fix code style. | Andrei Karas | 1 | -3/+0 | |
2017-06-09 | Fix code style. | Andrei Karas | 1 | -1/+2 | |
2017-06-08 | Remove useless extern declarations. | Andrei Karas | 1 | -3/+1 | |
2017-06-07 | Fix clang-tidy check readability-implicit-bool-cast. | Andrei Karas | 1 | -160/+172 | |
2017-06-04 | Fix code style. | Andrei Karas | 1 | -1/+1 | |
2017-05-08 | Fix wrong checks after removing some server features. | Andrei Karas | 1 | -2/+2 | |
2017-05-02 | Fix compilation without tmwa support. | Andrei Karas | 1 | -3/+3 | |
2017-05-02 | Remove extra includes. | Andrei Karas | 1 | -4/+2 | |
2017-05-01 | Remove ServerFeatures haveExpPacket because it depend only on server type. | Andrei Karas | 1 | -2/+2 | |
2017-05-01 | Remove ServerFeatures haveVending because it depend only on server type. | Andrei Karas | 1 | -1/+1 | |