1
0
mirror of https://github.com/CFC-Servers/chucks_weaponry_2.0.git synced 2025-03-04 03:13:12 -05:00

Small tweak

This commit is contained in:
Redox 2024-07-02 18:53:32 +02:00 committed by GitHub
parent 1548ccb7a0
commit 1f8c3603b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ AddCSLuaFile()
CustomizableWeaponry.preset = {}
CustomizableWeaponry.preset.enabled = true -- set this to 'false' to disable preset saving/loading
CustomizableWeaponry.preset.delay = 1 -- amount of time in seconds to delay the ability to load a preset after the client did that just now
CustomizableWeaponry.preset.networkString = "CW20_PRESET_LOAD" -- the string that will be used for preset loading networking
CustomizableWeaponry.preset.networkString = "CW20_PRESETLOAD" -- the string that will be used for preset loading networking
CustomizableWeaponry.preset.presetSavedString = "CW20_PRESET_SAVED" -- the string that will be sent to the server to notify that we saved a preset
CustomizableWeaponry.preset.folder = CustomizableWeaponry.baseFolder .. "/presets/"
CustomizableWeaponry.preset.invalidSymbols = "[/.:;']"
@ -459,4 +459,4 @@ function CustomizableWeaponry.preset:load(data, name_sv)
end
self.PresetLoadDelay = CT + CustomizableWeaponry.preset.delay
end
end