Skip to content

Commit

Permalink
Fixed transformation skin
Browse files Browse the repository at this point in the history
Fixes #358
  • Loading branch information
sven-n committed Jul 8, 2023
1 parent 7510aa1 commit 61a3882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GameServer/RemoteView/World/NewPlayersInScopePlugIn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ int Write()
playerBlock.HeroState = selectedCharacter.State.Convert();

playerBlock.EffectCount = (byte)activeEffects.Count;
playerBlock.Skin = (ushort)this._player.Attributes![Stats.TransformationSkin];
playerBlock.Skin = (ushort)newPlayer.Attributes![Stats.TransformationSkin];
for (int e = playerBlock.EffectCount - 1; e >= 0; e--)
{
var effectBlock = playerBlock[e];
Expand Down

0 comments on commit 61a3882

Please sign in to comment.