mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-16 06:32:28 +00:00
Add support for Cross Controller Planets (#562)
* Add support for Cross Controller Planets * Clean
This commit is contained in:
parent
74c70115b8
commit
ca317d3afc
5 changed files with 47 additions and 2 deletions
|
@ -109,7 +109,7 @@ public class UserController : ControllerBase
|
|||
if (update.MehHash != null) user.MehHash = update.MehHash;
|
||||
|
||||
if (update.BooHash != null) user.BooHash = update.BooHash;
|
||||
|
||||
|
||||
if (update.Slots != null)
|
||||
{
|
||||
foreach (UserUpdateSlot? updateSlot in update.Slots)
|
||||
|
@ -131,6 +131,8 @@ public class UserController : ControllerBase
|
|||
}
|
||||
}
|
||||
|
||||
if (update.PlanetHashLBP2CC != null) user.PlanetHashLBP2CC = update.PlanetHashLBP2CC;
|
||||
|
||||
if (update.PlanetHash != null)
|
||||
{
|
||||
switch (token.GameVersion)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue