From 44db72ead568fe7ce22e1999aac02fd9aac9beea Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sat, 10 Oct 2015 05:55:55 +0200 Subject: GH-93 add an option to not copy saves on instance copy --- logic/minecraft/Mod.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'logic/minecraft/Mod.cpp') diff --git a/logic/minecraft/Mod.cpp b/logic/minecraft/Mod.cpp index 879ca195..9b9f76f9 100644 --- a/logic/minecraft/Mod.cpp +++ b/logic/minecraft/Mod.cpp @@ -278,7 +278,7 @@ bool Mod::replace(Mod &with) } if (t == MOD_FOLDER) { - success = FS::copyPath(with.m_file.filePath(), m_file.path()); + success = FS::copy(with.m_file.filePath(), m_file.path())(); } if (success) { -- cgit