mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Fix trainer time variance
This commit is contained in:
parent
db9450e0e5
commit
76abadcfa0
4 changed files with 7 additions and 7 deletions
|
@ -209,7 +209,10 @@ namespace HISP.Game.Events
|
|||
{
|
||||
foreach(Participent participent in Participents)
|
||||
{
|
||||
|
||||
|
||||
if (participent == null)
|
||||
continue;
|
||||
|
||||
if (participent.Quit)
|
||||
continue;
|
||||
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace HISP.Game.Services
|
||||
{
|
||||
|
|
|
@ -108,6 +108,7 @@ namespace HISP.Server
|
|||
kickTimer.Dispose();
|
||||
|
||||
// Call OnDisconnect
|
||||
|
||||
connectedClients.Remove(this);
|
||||
GameServer.OnDisconnect(this);
|
||||
LoggedIn = false;
|
||||
|
|
|
@ -1424,7 +1424,7 @@ namespace HISP.Server
|
|||
break;
|
||||
}
|
||||
trainHorseInst.BasicStats.Experience += trainer.ExperienceGained;
|
||||
if (sender.LoggedinUser.Subscribed)
|
||||
if (!sender.LoggedinUser.Subscribed)
|
||||
trainHorseInst.TrainTimer = 1440;
|
||||
else
|
||||
trainHorseInst.TrainTimer = 720;
|
||||
|
|
Loading…
Add table
Reference in a new issue