Skip to content

Commit

Permalink
package new config files
Browse files Browse the repository at this point in the history
  • Loading branch information
rafradek committed Dec 29, 2022
1 parent fe715d4 commit 0058c93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion PackageScript
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def CopyFiles(src, dest, files):
source_path = os.path.join(builder.sourcePath, src, source_file)
builder.AddCopy(source_path, dest_entry)

# Include files
# Include files
#CopyFiles('include', 'addons/sourcemod/scripting/include',
# [
# 'sample.inc',
Expand Down Expand Up @@ -103,6 +103,8 @@ CopyFiles('scripts', 'custom/sigsegv/scripts',
)

builder.AddCopy('cfg/sigsegv_convars.cfg', folder_map['cfg'])
builder.AddCopy('cfg/sigsegv_convars_pvp.cfg', folder_map['cfg'])
builder.AddCopy('cfg/sigsegv_convars_vanilla.cfg', folder_map['cfg'])
builder.AddCopy('sigsegv.autoload', folder_map['addons/sourcemod/extensions'])
builder.AddCopy('scripts/mvm_bigrock_sigdemo.pop', folder_map['custom/sigsegv/scripts/population'])
builder.AddCopy('scripts/mvm_bigrock_luademo.pop', folder_map['custom/sigsegv/scripts/population'])
Expand Down
2 changes: 1 addition & 1 deletion cfg/sigsegv_convars_pvp.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

//-------------
//These are default values for convars added by sigsegv extension. Changed values should be added into sigsegv_convars.cfg file
//If you wish to use this extension for pvp game modes, you can overwrite sigsegv_convars.cfg with this file
//-------------

sig_color_console "1" // Enable color console output
Expand Down

0 comments on commit 0058c93

Please sign in to comment.