Skip to content

Commit

Permalink
update for p103
Browse files Browse the repository at this point in the history
  • Loading branch information
foglio1024 committed Feb 6, 2021
1 parent b7cd54d commit be8976c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion TCC.Core/Module/lib/rpc-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class RpcHandler
}
requestExTooltip(params)
{
this.mod.send("C_SHOW_ITEM_TOOLTIP_EX", 3, {
this.mod.send("C_SHOW_ITEM_TOOLTIP_EX", this.mod.majorPatchVersion >= 103 ? 5 : 4, {
type: 17,
id: params.itemUid,
playerId: -1,
Expand Down
2 changes: 1 addition & 1 deletion TeraPacketParser/Messages/S_GET_USER_LIST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public S_GET_USER_LIST(TeraMessageReader reader) : base(reader)
c.Laurel = (Laurel)reader.ReadInt32();
c.Position = reader.ReadInt32();
c.GuildId = reader.ReadUInt32();

//TODO: use adventureCoins and itemLevel from here (added in p103)
reader.RepositionAt(nameOffset);
c.Name = reader.ReadTeraString();
try
Expand Down

0 comments on commit be8976c

Please sign in to comment.