fix: Moves mods and fixes migrations for lights (#1080)
- [X] Removes duplicate property for owner. - [X] Codegens them all (even though they aren't used, just in case someone wants to).
This commit is contained in:
parent
dc7033d71f
commit
7adf52ef48
20 changed files with 557 additions and 219 deletions
|
|
@ -24,7 +24,10 @@ namespace Server
|
|||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static void MarkDirty(this ISerializable entity)
|
||||
{
|
||||
entity.SavePosition = -1;
|
||||
if (entity != null)
|
||||
{
|
||||
entity.SavePosition = -1;
|
||||
}
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue