mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-21 19:51:33 +00:00
Separate no copy file flag for JK3
This commit is contained in:
parent
1968a7d8ba
commit
50db9039df
2 changed files with 6 additions and 1 deletions
Binary file not shown.
|
@ -244,10 +244,15 @@ import java.util.Vector;
|
|||
|
||||
//Weapon Models
|
||||
copy_asset("/sdcard/JKXR/JK2/base", "z_Crusty_and_Elin_vr_weapons.pk3", false);
|
||||
}
|
||||
|
||||
//Bunch of cool mods and their credits - only copy if user wants them
|
||||
if (!new File("/sdcard/JKXR/JK3/base/no_copy").exists()) {
|
||||
//Weapon Models
|
||||
copy_asset("/sdcard/JKXR/JK3/base", "z_Crusty_and_Elin_vr_weapons.pk3", false);
|
||||
}
|
||||
|
||||
//Copy mods to the demo folder if it exists, since the demo doesn't seem to be able to load mods from base
|
||||
//Copy mods to the demo folder if demo assets exist, since the demo doesn't seem to be able to load mods from base
|
||||
if (new File("/sdcard/JKXR/JK2/jk2demo/assets0.pk3").exists()) {
|
||||
|
||||
//Copy the weapon adjustment config - should we force overwrite?
|
||||
|
|
Loading…
Reference in a new issue