From 2a634227aad790f2fb084fbe22aa565843bdec5a Mon Sep 17 00:00:00 2001 From: Malware <4653628+malware-dev@users.noreply.github.com> Date: Thu, 9 May 2019 14:48:50 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 264afbb..992c1b6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # MDK-SE -(Malware's Development Kit for SE) +_(Malware's Development Kit for SE)_ ----- +- - - A toolkit to help with ingame script (programmable block) development for Keen Software House's space sandbox Space Engineers. It helps you create a ready-to-code project for writing ingame scripts, and provides an analyzer which warns you if you're trying to use something that is not allowed in Space Engineers. @@ -22,4 +22,6 @@ A toolkit to help with ingame script (programmable block) development for Keen S (You don't have to use the extension to get something out of this guide) * [Contributing to MDK](https://github.com/malware-dev/MDK-SE/blob/master/CONTRIBUTING.md) +- - - + Space Engineers is trademarked to Keen Software House. This toolkit is fan-made, and its developer has no relation to Keen Software House. From bb407fb870c4edd37103587f614d86a2e9313fad Mon Sep 17 00:00:00 2001 From: SpaceBeeGaming Date: Thu, 30 May 2019 22:05:20 +0300 Subject: [PATCH 2/2] Fixed wrong information in constructor comment. (#149) Corrected RuntimeInfo.UpdateFrequency to Runtime.UpdateFrequency --- Source/IngameScriptTemplate/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/IngameScriptTemplate/Program.cs b/Source/IngameScriptTemplate/Program.cs index 18151ae..45ca09f 100644 --- a/Source/IngameScriptTemplate/Program.cs +++ b/Source/IngameScriptTemplate/Program.cs @@ -46,7 +46,7 @@ public Program() // The constructor is optional and can be removed if not // needed. // - // It's recommended to set RuntimeInfo.UpdateFrequency + // It's recommended to set Runtime.UpdateFrequency // here, which will allow your script to run itself without a // timer block. } @@ -74,4 +74,4 @@ public void Main(string argument, UpdateType updateSource) // can be removed if not needed. } } -} \ No newline at end of file +}