Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 57343d5

Browse files
committed
Update for SE v 1.123
1 parent 0ffd50c commit 57343d5

39 files changed

+541
-60
lines changed
0 Bytes
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
//211
1+
//239
22
//
33
// This code was generated by a tool. Any changes made manually will be lost
44
// the next time this code is regenerated.
55
//
66

77
using System.Reflection;
88

9-
[assembly: AssemblyFileVersion("1.13.5.211")]
10-
[assembly: AssemblyVersion("1.13.5.211")]
9+
[assembly: AssemblyFileVersion("1.13.5.239")]
10+
[assembly: AssemblyVersion("1.13.5.239")]

EssentialsPlugin/ChatHandlers/Admin/HandleAdminNotify.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
using System.Linq;
55
using EssentialsPlugin.Utility;
66
using Sandbox.Common;
7+
using VRage.Game;
78

8-
public class HandleAdminNotify : ChatHandlerBase
9+
public class HandleAdminNotify : ChatHandlerBase
910
{
1011
public override string GetHelp()
1112
{

EssentialsPlugin/ChatHandlers/Admin/HandleAdminOwnershipChange.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
using SEModAPIInternal.API.Entity.Sector.SectorObject.CubeGrid;
1010
using SEModAPIInternal.API.Entity.Sector.SectorObject.CubeGrid.CubeBlock;
1111
using VRage.ModAPI;
12+
using VRage.Game;
13+
1214
public class HandleAdminOwnershipChange : ChatHandlerBase
1315
{
1416
public override string GetHelp( )
@@ -102,7 +104,10 @@ public override bool HandleCommand( ulong userId, string[ ] words )
102104
Communication.SendPrivateInformation( userId, string.Format( "Could not find entity with id {0}.", gridId ) );
103105
return true;
104106
}
105-
grid.ChangeGridOwnership( playerId, Sandbox.Common.ObjectBuilders.MyOwnershipShareModeEnum.Faction );
107+
Wrapper.GameAction( ( ) =>
108+
{
109+
grid.ChangeGridOwnership( playerId, MyOwnershipShareModeEnum.Faction );
110+
} );
106111
Communication.SendPrivateInformation( userId, string.Format( "Ownership changed to player {0}", name ) );
107112
return true;
108113
}

EssentialsPlugin/ChatHandlers/Admin/HandleAdminVersion.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
using VRageMath;
1919
using VRage.ModAPI;
2020
using VRage.Serialization;
21-
using Sandbox.Common.ObjectBuilders.ComponentSystem;
2221

2322
public class HandleAdminVersion : ChatHandlerBase
2423
{

EssentialsPlugin/ChatHandlers/AdminConceal/HandleAdminReveal.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using Sandbox.ModAPI;
1111
using SEModAPIInternal.API.Common;
1212
using SEModAPIInternal.API.Entity;
13+
using VRage.Game;
1314
using VRage.ModAPI;
1415
using VRage.ObjectBuilders;
1516
using VRageMath;

EssentialsPlugin/ChatHandlers/AdminDelete/HandleAdminDeleteCleanup.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
using Sandbox.ModAPI;
88
using SEModAPIInternal.API.Common;
99
using SEModAPIInternal.API.Entity.Sector.SectorObject;
10+
using VRage.Game;
1011
using VRage.ModAPI;
12+
using VRage.Game.ObjectBuilders;
1113

1214
public class HandleAdminDeleteCleanup : ChatHandlerBase
1315
{

EssentialsPlugin/ChatHandlers/AdminDelete/HandleAdminDeleteGrids.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using Sandbox.ModAPI;
88
using SEModAPIInternal.API.Common;
99
using SEModAPIInternal.API.Entity;
10+
using VRage.Game;
1011
using VRage.ModAPI;
1112

1213
public class HandleAdminDeleteGrids : ChatHandlerBase

EssentialsPlugin/ChatHandlers/AdminDelete/HandleAdminDeleteInactive.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace EssentialsPlugin.ChatHandlers.AdminDelete
88
using Sandbox.ModAPI;
99
using SEModAPIInternal.API.Common;
1010
using SEModAPIInternal.API.Entity.Sector.SectorObject;
11+
using VRage.Game;
1112
using VRage.ModAPI;
1213

1314
public class HandleAdminDeleteInactive : ChatHandlerBase

EssentialsPlugin/ChatHandlers/AdminDelete/HandleAdminDeleteNoBeacon.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using Sandbox.ModAPI;
88
using SEModAPIInternal.API.Common;
99
using SEModAPIInternal.API.Entity.Sector.SectorObject;
10+
using VRage.Game;
1011
using VRage.ModAPI;
1112

1213
public class HandleAdminDeleteNoBeacon : ChatHandlerBase

0 commit comments

Comments
 (0)