This commit is contained in:
Lukas Moungos
2019-07-19 23:40:14 +02:00
parent 82b91543a9
commit ffa80fca6a
2 changed files with 3 additions and 4 deletions

View File

@@ -52,9 +52,6 @@ namespace ReallifeGamemode.Server.Events
player.TriggerEvent("toggleCreator");
player.Position = new Vector3(402.8664, -996.4108, -99.00027);
//player.Position = new Vector3(user.PositionX, user.PositionY, user.PositionZ);
user.PaydayTimer = 60;
}
else if (dbContext.Users.Where(u => u.SocialClubName == player.SocialClubName).Count() >= 3)
{

View File

@@ -1,6 +1,7 @@
using System.Globalization;
using GTANetworkAPI;
using ReallifeGamemode.Server.Classes;
using ReallifeGamemode.Server.Finance;
using ReallifeGamemode.Server.Managers;
using ReallifeGamemode.Server.Util;
using ReallifeGamemode.Server.Wanted;
@@ -66,6 +67,7 @@ namespace ReallifeGamemode.Server
WantedEscapeTimer.WantedTimer();
Jail.JailTimer();
Economy.PaydayTimer();
}
}