Skip to content

Commit f794f9d

Browse files
authored
Merge pull request #2 from jsdotlua/remove-process-service-check
Remove Roblox ProcessService check that disables colors
2 parents aa5856a + be2cbc9 commit f794f9d

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)