Compare commits

...

4 Commits

Author SHA1 Message Date
hailey
b8d43e38b7 2 cool rpc changes! 2021-09-27 12:26:52 +10:00
hailey
6b595d2146 Merge branch 'master' of https://github.com/MillaBasset/cambridge 2021-09-27 12:18:31 +10:00
hailey
1082a2903a small image text now shows version! 2021-09-27 12:09:03 +10:00
hailey
3480734a44 just a few more rpc strings 2021-09-27 11:55:42 +10:00
2 changed files with 13 additions and 1 deletions

View File

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

View File

@ -26,7 +26,12 @@ local mainmenuidle = {
"Trying to see all the funny rpc messages (maybe)",
"Not not not playing",
"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()
@ -40,6 +45,7 @@ function TitleScene:new()
details = "In menus",
state = mainmenuidle[math.random(#mainmenuidle)],
largeImageKey = "icon2",
largeImageText = version
})
end