Skip to content

Commit be2cbc9

Browse files
Remove Roblox ProcessService check that disables colors
The coloring can still be disabled using the `NOCOLOR` global variable.
1 parent aa5856a commit be2cbc9

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/init.lua

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,8 @@ local function compositeStyler(style, otherStyle)
116116
return createStyler(style.open .. otherStyle.open, otherStyle.close .. style.close)
117117
end
118118

119-
local function foundProcessService()
120-
local success = pcall(function()
121-
game:GetService("ProcessService")
122-
end)
123-
return success
124-
end
125-
126119
local Chalk = { level = 2 }
127-
if _G.NOCOLOR or not foundProcessService() then
120+
if _G.NOCOLOR then
128121
Chalk.level = 0
129122
end
130123

0 commit comments

Comments
 (0)