Skip to content

Commit a80cf89

Browse files
EgoMoosegithub-actions[bot]
authored andcommitted
(0.573.0.5730507)
1 parent 7f6b4b0 commit a80cf89

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

src/VersionInfo.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "0.571.0.5710526",
3-
"guid": "version-4ef836e0430f4819"
2+
"version": "0.573.0.5730507",
3+
"guid": "version-da56b3062bbf4871"
44
}

src/init.lua

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,23 @@ local StarterPlayerScripts = StarterPlayer:WaitForChild("StarterPlayerScripts")
55

66
local module = {}
77
local RbxCharacterSounds = script:WaitForChild("RbxCharacterSounds")
8+
local versionInfo = require(script:WaitForChild("VersionInfo"))
89

910
local MODULE_NAME = RbxCharacterSounds.Name
1011

11-
function module.get(): ModuleScript
12+
function module.getVersionInfo(): {[string]: string}
13+
return table.clone(versionInfo)
14+
end
15+
16+
function module.get(): LocalScript
1217
return RbxCharacterSounds
1318
end
1419

15-
function module.getCopy(): ModuleScript
20+
function module.getCopy(): LocalScript
1621
return module.get():Clone()
1722
end
1823

19-
function module.replace(rbxCharacterSounds: ModuleScript)
24+
function module.replace(rbxCharacterSounds: LocalScript)
2025
local existing = StarterPlayerScripts:FindFirstChild(MODULE_NAME)
2126
if existing then
2227
existing:Destroy()

wally.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "upliftgames/rbxcharactersounds"
3-
version = "571.0.5710526"
3+
version = "573.0.5730507"
44
registry = "https://github.com/UpliftGames/wally-index"
55
realm = "shared"
66

0 commit comments

Comments
 (0)