Skip to content

Commit

Permalink
Changed default world lines to Parts, and added version to console lo…
Browse files Browse the repository at this point in the history
…g on server startup.
  • Loading branch information
metauni committed Dec 30, 2021
1 parent 2f2c270 commit 9de3f7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/common/Config.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
local Config = {
Version = "v0.3.4",
BoardTag = "metaboard",
DataStoreTag = "metaboardv2.",

Expand Down Expand Up @@ -31,7 +32,7 @@ local Config = {
CanvasThickness = 0.5,

-- "HandleAdornments" or "Parts" or "RoundedParts"
WorldLineType = "RoundedParts",
WorldLineType = "Parts",

UseCache = false,
}
Expand Down
2 changes: 1 addition & 1 deletion src/server/MetaBoard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function MetaBoard.Init()
end
end)

print("MetaBoard Server initialized")
print("MetaBoard Server "..Config.Version.." initialized")
end

function MetaBoard.GetSurfaceCFrame(part, face)
Expand Down

0 comments on commit 9de3f7a

Please sign in to comment.