So I'm looking at the changes to scripts from my test server compared to ServUO's latest repo and I have a question. I noticed that DateTime.Now has been altered in a couple of different ways and I'm curious as to why there are so many different ways now...
Old: DateTime.Now/DateTime.Now + TimeSpawn.FromSeconds(10)
New: DateTime.UtcNow, Core.TickCount, DateTime.Now + TimeSpan.FromSeconds(1000), Core.TickCount + TimeSpan.FromSeconds(1000)
When it comes to doing a merge, it's very confusing, as you can't simply change all DateTime.Now to DateTime.UtcNow for example.
Old: DateTime.Now/DateTime.Now + TimeSpawn.FromSeconds(10)
New: DateTime.UtcNow, Core.TickCount, DateTime.Now + TimeSpan.FromSeconds(1000), Core.TickCount + TimeSpan.FromSeconds(1000)
When it comes to doing a merge, it's very confusing, as you can't simply change all DateTime.Now to DateTime.UtcNow for example.
Last edited: