Compare commits

..

No commits in common. "b8d43e38b7fec0c246938e6069b9f03b4e2fa295" and "82966e99c367fe0e94b1d6ea49260d7148090315" have entirely different histories.

2 changed files with 1 additions and 13 deletions

View File

@ -56,12 +56,6 @@ function ModeSelectScene:update()
self:changeOption(self.das_up and -1 or 1) self:changeOption(self.das_up and -1 or 1)
self.das = self.das - 4 self.das = self.das - 4
end end
DiscordRPC:update({
details = "In menus",
state = "Choosing a " .. self.menu_state.select,
largeImageKey = "ingame-000"
})
end end
function ModeSelectScene:render() function ModeSelectScene:render()

View File

@ -26,12 +26,7 @@ local mainmenuidle = {
"Trying to see all the funny rpc messages (maybe)", "Trying to see all the funny rpc messages (maybe)",
"Not not not playing", "Not not not playing",
"AFK", "AFK",
"Preparing for their next game", "Preparing for their next game"
"Who are those people on that boat?",
"Welcome to Cambridge!",
"who even reads these",
"Made with love in LOVE!",
"This is probably the longest RPC string out of every possible RPC string that can be displayed."
} }
function TitleScene:new() function TitleScene:new()
@ -45,7 +40,6 @@ function TitleScene:new()
details = "In menus", details = "In menus",
state = mainmenuidle[math.random(#mainmenuidle)], state = mainmenuidle[math.random(#mainmenuidle)],
largeImageKey = "icon2", largeImageKey = "icon2",
largeImageText = version
}) })
end end