Skip to content

Commit

Permalink
Fix calling include wrong (#1847)
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrb93 authored Sep 10, 2024
1 parent 9461f4b commit 1b7d91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/starfall/preprocessor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SF.PreprocessData = {
includedata = function(self, args)
if #args == 0 then return "Empty includedata directive" end
self.includesdata[#self.includesdata + 1] = args
SF.PreprocessData.directives.include.process(self, args)
SF.PreprocessData.directives.include(self, args)
end,

includedir = function(self, args)
Expand Down

0 comments on commit 1b7d91a

Please sign in to comment.