diff options
| author | Michael <[email protected]> | 2017-03-07 14:56:48 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-07 14:56:57 -0500 |
| commit | 2a747334bd926d79537b9e8d4f38c79a815752e5 (patch) | |
| tree | 0691439372e8584890a429c78591a0e8d7681573 /ShiftOS_TheReturn/SaveSystem.cs | |
| parent | c64333d0f57c50a2519b5c631d44243ff41ca815 (diff) | |
| download | shiftos_thereturn-2a747334bd926d79537b9e8d4f38c79a815752e5.tar.gz shiftos_thereturn-2a747334bd926d79537b9e8d4f38c79a815752e5.tar.bz2 shiftos_thereturn-2a747334bd926d79537b9e8d4f38c79a815752e5.zip | |
WHOA HACKING
Diffstat (limited to 'ShiftOS_TheReturn/SaveSystem.cs')
| -rw-r--r-- | ShiftOS_TheReturn/SaveSystem.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs index b9633e5..df4c6d6 100644 --- a/ShiftOS_TheReturn/SaveSystem.cs +++ b/ShiftOS_TheReturn/SaveSystem.cs @@ -155,6 +155,8 @@ namespace ShiftOS.Engine public static void FinishBootstrap() { + KernelWatchdog.Log("mud_handshake", "handshake successful: kernel watchdog access code is \"" + ServerManager.thisGuid.ToString() + "\""); + ServerManager.MessageReceived += (msg) => { if (msg.Name == "mud_savefile") @@ -313,7 +315,7 @@ namespace ShiftOS.Engine System.IO.File.WriteAllText(Paths.SaveFile, Utils.ExportMount(0)); } - public static void TransferCodepointsFrom(string who, int amount) + public static void TransferCodepointsFrom(string who, long amount) { NotificationDaemon.AddNotification(NotificationType.CodepointsReceived, amount); CurrentSave.Codepoints += amount; |
