Skip to content

Commit

Permalink
Case consistency is important, yo
Browse files Browse the repository at this point in the history
  • Loading branch information
demonnic committed Feb 13, 2023
1 parent 35f5043 commit 7cf4469
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package": "MDK",
"version": "2.8.0",
"version": "2.8.1",
"author": "Demonnic",
"title": "Collection of useful objects/classes",
"icon": "computer.png",
Expand Down
6 changes: 3 additions & 3 deletions src/resources/gradientmaker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
-- Original functions found on <a href="https://forums.lusternia.com/discussion/3261/anyone-want-text-gradients">the Lusternia Forums</a>
-- <br> I added functions to work with hecho.
-- <br> I also made performance enhancements by storing already calculated gradients after first use for the session and only including the colorcode in the returned string if the color changed.
-- @module gradientmaker
-- @module GradientMaker
-- @author Sylphas on the Lusternia forums
-- @author Damian Monogue <demonnic@gmail.com>
-- @copyright 2018 Sylphas
-- @copyright 2020 Damian Monogue
local Gradientmaker = {}
local GradientMaker = {}
local gradient_table = {}

local function _clamp(num1, num2, num3)
Expand Down Expand Up @@ -339,4 +339,4 @@ end
-- return gradient_table
-- end

return Gradientmaker
return GradientMaker

0 comments on commit 7cf4469

Please sign in to comment.