diff options
-rw-r--r-- | src/map/pc.cpp | 4 | ||||
-rw-r--r-- | src/mmo/clif.t.hpp | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 6d71d81..0b7cf05 100644 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -1898,6 +1898,10 @@ int pc_bonus(dumb_ptr<map_session_data> sd, SP type, int val) if (!sd->state.lr_flag_is_arrow_2) sd->max_weight = val; break; + case SP::MAXWEIGHT_ADD: + if (!sd->state.lr_flag_is_arrow_2) + sd->max_weight += val; + break; default: if (battle_config.error_log) PRINTF("pc_bonus: unknown type %d %d !\n"_fmt, diff --git a/src/mmo/clif.t.hpp b/src/mmo/clif.t.hpp index f8350a7..260ae63 100644 --- a/src/mmo/clif.t.hpp +++ b/src/mmo/clif.t.hpp @@ -265,6 +265,7 @@ enum class SP : uint16_t WEIGHT = 24, // sent to client MAXWEIGHT = 25, + MAXWEIGHT_ADD = 26, // sent to client USTR = 32, |