Skip to content

Commit

Permalink
Updated for 1.116
Browse files Browse the repository at this point in the history
  • Loading branch information
rexxar-tc committed Jan 10, 2016
1 parent c31ee5a commit feeb5fd
Show file tree
Hide file tree
Showing 37 changed files with 513 additions and 305 deletions.
Binary file modified GameLibraries/HavokWrapper.dll
Binary file not shown.
Binary file modified GameLibraries/InfinarioSDK.dll
Binary file not shown.
Binary file removed GameLibraries/InfinarioSDKC.dll
Binary file not shown.
30 changes: 30 additions & 0 deletions GameLibraries/Sandbox.Common.XML

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified GameLibraries/Sandbox.Common.dll
Binary file not shown.
Binary file modified GameLibraries/Sandbox.Game.dll
Binary file not shown.
Binary file modified GameLibraries/Sandbox.Graphics.dll
Binary file not shown.
Binary file modified GameLibraries/SpaceEngineers.Game.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified GameLibraries/SpaceEngineersDedicated.exe
Binary file not shown.
Binary file modified GameLibraries/VRage.Audio.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Dedicated.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Game.XmlSerializers.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Game.dll
Binary file not shown.
78 changes: 37 additions & 41 deletions GameLibraries/VRage.Game.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified GameLibraries/VRage.Input.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Library.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Math.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Native.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.Render.dll
Binary file not shown.
Binary file modified GameLibraries/VRage.dll
Binary file not shown.
124 changes: 124 additions & 0 deletions GameLibraries/VRage.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions SEModAPI/API/Definitions/DedicatedConfigDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,27 @@ public DedicatedConfigDefinition( MyConfigDedicatedData<MyObjectBuilder_SessionS
}

#region "Properties"

private string chatname = "Server";
// I'll figure out how to save this later. For now it's hardcoded to "Server"
/// <summary>
/// Get or set the server's name
/// </summary>
[DataMember]
[Browsable( true )]
[ReadOnly( true )]
[ReadOnly( false )]
[Description( "Chat messages sent by the server will show this name. You MUST have the Essentials client mod installed for this to work. " +
"\r\nNote: Changing this is temporarily disabled. This is set separately from Essentials, you may want to change them to match." )]
"\r\nNote: This value isn't saved between sessions (temporary). This is set separately from Essentials, you may want to change them to match." )]
[Category( "Extender Settings" )]
[DisplayName( "Server Chat Name" )]
public string ServerChatName
{
get
{
return "Server";
return chatname;
}
set
{
chatname = value;
}
}

Expand Down
6 changes: 3 additions & 3 deletions SEModAPI/AssemblyFileVersion.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//15
//3
//
// This code was generated by a tool. Any changes made manually will be lost
// the next time this code is regenerated.
//

using System.Reflection;

[assembly: AssemblyFileVersion("1.115.6.15")]
[assembly: AssemblyVersion("1.115.6.15")]
[assembly: AssemblyFileVersion("1.116.11.3")]
[assembly: AssemblyVersion("1.116.11.3")]
4 changes: 2 additions & 2 deletions SEModAPI/AssemblyFileVersion.tt
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@

using System.Reflection;

[assembly: AssemblyFileVersion("1.115.6.<#= revisionNumber #>")]
[assembly: AssemblyVersion("1.115.6.<#= revisionNumber #>")]
[assembly: AssemblyFileVersion("1.116.11.<#= revisionNumber #>")]
[assembly: AssemblyVersion("1.116.11.<#= revisionNumber #>")]
Loading

0 comments on commit feeb5fd

Please sign in to comment.