From 910a1c455e0176bfff7776e47f9160e349cfaf67 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 25 Feb 2017 10:03:36 -0500 Subject: Notification counter on desktop. --- ShiftOS_TheReturn/SaveSystem.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ShiftOS_TheReturn/SaveSystem.cs') diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs index fb7070a..9ae18a9 100644 --- a/ShiftOS_TheReturn/SaveSystem.cs +++ b/ShiftOS_TheReturn/SaveSystem.cs @@ -209,8 +209,7 @@ namespace ShiftOS.Engine public static void TransferCodepointsToVoid(int amount) { CurrentSave.Codepoints -= amount; - if(!Shiftorium.Silent) - Console.WriteLine($"{{SHIFTORIUM_TRANSFERRED_TO}}: {amount} -> sys"); + NotificationDaemon.AddNotification(NotificationType.CodepointsSent, amount); } public static void Restart() @@ -302,7 +301,7 @@ namespace ShiftOS.Engine public static void TransferCodepointsFrom(string who, int amount) { - Console.WriteLine($"{{SHIFTORIUM_TRANSFERRED_FROM}}: {amount} <- {who}"); + NotificationDaemon.AddNotification(NotificationType.CodepointsReceived, amount); CurrentSave.Codepoints += amount; } } -- cgit v1.2.3