From 9741dd9504cc1d0f9599691b95f7a2f69cb3c099 Mon Sep 17 00:00:00 2001 From: Tony Bark Date: Fri, 29 Nov 2024 05:30:45 +0000 Subject: [PATCH] New desktop option and event --- Source/MAIN.BAS | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Source/MAIN.BAS b/Source/MAIN.BAS index ebe1c7b..3f38568 100644 --- a/Source/MAIN.BAS +++ b/Source/MAIN.BAS @@ -105,6 +105,16 @@ SUB BuildDistroList () AllPackages(3).isOpenSource = 1 AllPackages(3).TypeOfSoftware = kTypeDesktopEnvironment + AllPackages(4).Name = "START" + AllPackages(4).Bugs = 2 + AllPackages(4).Description = "The Start Desktop Environment" + AllPackages(4).NerdCred = 5 + AllPackages(4).Popularity = 1 + AllPackages(4).SizeInMB = 2 + AllPackages(4).Version = 1 + AllPackages(4).isOpenSource = 1 + AllPackages(4).TypeOfSoftware = kTypeDesktopEnvironment + AllPackages(4).Name = "FlamingRodent" @@ -599,6 +609,11 @@ SUB DoRandomEvents () END IF END IF + IF theNum = 28 THEN + LogEvent ("The new version of Windows is awful!") + MyDistro.Hype = MyDistro.Hype - 20 + END IF + END SUB