urgent fix

small bugfix
urgent
This commit is contained in:
Advocaite 2023-01-22 02:48:38 +08:00
parent bbc38b4cb8
commit 97d0a55972
2 changed files with 2 additions and 1 deletions

View File

@ -136,7 +136,7 @@ namespace DiIiS_NA.GameServer.ClientSystem
if (client.Player.PlayerIndex > 0)
{
//make sure toons Difficulty is set
toon.CurrentDifficulty = (uint)game.Difficulty;
toon.CurrentDifficulty = (int)game.Difficulty;
client.SendMessage(new HandicapMessage(Opcodes.HandicapMessage)
{
Difficulty = (uint)game.Difficulty

View File

@ -12,6 +12,7 @@ using DiIiS_NA.GameServer.GSSystem.PlayerSystem;
//Blizzless Project 2022
using DiIiS_NA.GameServer.MessageSystem.Message.Definitions.World;
using DiIiS_NA.D3_GameServer.Core.Types.SNO;
using DiIiS_NA.GameServer.MessageSystem;
namespace DiIiS_NA.GameServer.GSSystem.ActorSystem.Implementations
{