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

Commit b871ad1

Browse files
committed
Prep for release
1 parent e1374c8 commit b871ad1

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
//364
1+
//365
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.7.364")]
10-
[assembly: AssemblyVersion("1.13.7.364")]
9+
[assembly: AssemblyFileVersion("1.13.7.365")]
10+
[assembly: AssemblyVersion("1.13.7.365")]

EssentialsPlugin/Essentials.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ public MTObservableCollection<BlacklistItem> BlacklistItems
11081108
}
11091109

11101110
[Category( "Experiments" )]
1111-
[Description( "This will stop the server from processing the ragdoll component on characters. Can lead to SIGNIFICANT performance gains." )]
1111+
[Description( "This will stop the server from processing the ragdoll component on characters. Can lead to SIGNIFICANT performance gains.\r\n ONLY USEFUL ON STABLE!" )]
11121112
[Browsable( true )]
11131113
[ReadOnly( false )]
11141114
public bool DisableRagdoll
@@ -1118,6 +1118,7 @@ public bool DisableRagdoll
11181118
}
11191119

11201120
[Category( "Experiments" )]
1121+
[Description("Modifies the internal drill code to make cutouts happen faster or slower. Negative values will slow down drilling.")]
11211122
public int DrillSpeed
11221123
{
11231124
get { return PluginSettings.Instance.DrillSpeed; }
@@ -1465,8 +1466,10 @@ public void Update( )
14651466

14661467
Wrapper.BeginGameAction( ( ) =>
14671468
{
1468-
foreach (var entity in m_entitiesForUpdate10)
1469+
//foreach (var entity in m_entitiesForUpdate10)
1470+
for(int i = 0; i < m_entitiesForUpdate10.Count; i++)
14691471
{
1472+
var entity = m_entitiesForUpdate10[i];
14701473
if (!( entity is MyShipDrill ))
14711474
continue;
14721475
Log.Debug( "Update " + entity.DisplayName );

0 commit comments

Comments
 (0)