Skip to content

Commit

Permalink
fix: test icon talkaction
Browse files Browse the repository at this point in the history
  • Loading branch information
murilo09 committed Dec 2, 2024
1 parent 367e59b commit 451ab14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data/scripts/talkactions/god/icons_functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ end
function Player:sendNormalIcons(icons)
local msg = NetworkMessage()
msg:addByte(0xA2)
msg:addU32(icons)
msg:addU64(icons)
msg:addByte(0)
msg:sendToPlayer(self)
end

function Player:sendIconBakragore(specialIcon)
local msg = NetworkMessage()
msg:addByte(0xA3)
msg:addU32(specialIcon)
msg:addByte(0)
msg:addByte(0xA2)
msg:addU64(0)
msg:addByte(specialIcon)
msg:sendToPlayer(self)
end

Expand Down

0 comments on commit 451ab14

Please sign in to comment.