Whoops forgot a contributor, fixed

pull/24/head
Ishaan Bhardwaj 2021-06-15 21:47:38 -04:00
parent a5032386e6
commit a8ac8f5966
2 changed files with 7 additions and 5 deletions

View File

@ -102,5 +102,6 @@ Notable Games
- [TETR.IO](https://tetr.io) by osk - [TETR.IO](https://tetr.io) by osk
- [Master of Blocks](https://discord.gg/72FZ49mjWh) by Phoenix Flare - [Master of Blocks](https://discord.gg/72FZ49mjWh) by Phoenix Flare
- [Spirit Drop](https://rayblastgames.com/spiritdrop.php) by RayRay26 - [Spirit Drop](https://rayblastgames.com/spiritdrop.php) by RayRay26
- [stackfuse](https://github.com/sinefuse/stackfuse) by sinefuse
![Cambridge Logo](https://cdn.discordapp.com/attachments/625496179433668635/763363717730664458/Icon_2.png) ![Cambridge Logo](https://cdn.discordapp.com/attachments/625496179433668635/763363717730664458/Icon_2.png)

View File

@ -30,14 +30,14 @@ function CreditsScene:render()
love.graphics.setFont(font_3x5_4) love.graphics.setFont(font_3x5_4)
love.graphics.print("Cambridge Credits", 320, 500 - self.frames / 2) love.graphics.print("Cambridge Credits", 320, 500 - self.frames / 2)
love.graphics.print("THANK YOU\nFOR PLAYING!", 320, math.max(1890 - self.frames / 2, 240)) love.graphics.print("THANK YOU\nFOR PLAYING!", 320, math.max(1910 - self.frames / 2, 240))
love.graphics.setFont(font_3x5_3) love.graphics.setFont(font_3x5_3)
love.graphics.print("Game Developers", 320, 550 - self.frames / 2) love.graphics.print("Game Developers", 320, 550 - self.frames / 2)
love.graphics.print("Project Heads", 320, 640 - self.frames / 2) love.graphics.print("Project Heads", 320, 640 - self.frames / 2)
love.graphics.print("Notable Game Developers", 320, 730 - self.frames / 2) love.graphics.print("Notable Game Developers", 320, 730 - self.frames / 2)
love.graphics.print("Special Thanks", 320, 930 - self.frames / 2) love.graphics.print("Special Thanks", 320, 950 - self.frames / 2)
love.graphics.print("- Milla", 320, math.max(1970 - self.frames / 2, 320)) love.graphics.print("- Milla", 320, math.max(1990 - self.frames / 2, 320))
love.graphics.setFont(font_3x5_2) love.graphics.setFont(font_3x5_2)
love.graphics.print("Oshisaure\nJoe Zeng", 320, 590 - self.frames / 2) love.graphics.print("Oshisaure\nJoe Zeng", 320, 590 - self.frames / 2)
@ -45,7 +45,8 @@ function CreditsScene:render()
love.graphics.print( love.graphics.print(
"2Tie - TGMsim\nAxel Fox - Multimino\nDr Ocelot - Tetra Legends\n" .. "2Tie - TGMsim\nAxel Fox - Multimino\nDr Ocelot - Tetra Legends\n" ..
"Felicity/nightmareci/kdex - Shiromino\nMine - Tetra Online\n" .. "Felicity/nightmareci/kdex - Shiromino\nMine - Tetra Online\n" ..
"osk - TETR.IO\nPhoenix Flare - Master of Blocks\nRayRay26 - Spirit Drop", "osk - TETR.IO\nPhoenix Flare - Master of Blocks\nRayRay26 - Spirit Drop\n" ..
"sinefuse - stackfuse",
320, 770 - self.frames / 2 320, 770 - self.frames / 2
) )
love.graphics.print( love.graphics.print(
@ -63,7 +64,7 @@ function CreditsScene:render()
"The Absolute PLUS Discord\nTetra Legends Discord\nTetra Online Discord\n" .. "The Absolute PLUS Discord\nTetra Legends Discord\nTetra Online Discord\n" ..
"Multimino Discord\nHard Drop Discord\nCambridge Discord\n" .. "Multimino Discord\nHard Drop Discord\nCambridge Discord\n" ..
"And to you, the player!", "And to you, the player!",
320, 970 - self.frames / 2 320, 990 - self.frames / 2
) )
end end