summaryrefslogtreecommitdiff
path: root/.tools/applicator.py
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-20 08:38:05 -0300
committerJesusaves <cpntb1@ymail.com>2020-05-20 08:38:05 -0300
commitb382288b4ec12ea81bfb90da355f285146d3bf08 (patch)
tree9d60a49ef5003cd7c0f07ae11f5e001a77bd521a /.tools/applicator.py
parent04994a23aeae4a92281320f1a4d73b3b3dbfba81 (diff)
downloadserverdata-b382288b4ec12ea81bfb90da355f285146d3bf08.tar.gz
serverdata-b382288b4ec12ea81bfb90da355f285146d3bf08.tar.bz2
serverdata-b382288b4ec12ea81bfb90da355f285146d3bf08.tar.xz
serverdata-b382288b4ec12ea81bfb90da355f285146d3bf08.zip
Moubootaur Legends Patch Level 12
* new at command: @charchangesex * Homunculus EXP function improved WARNING: UNTESTED
Diffstat (limited to '.tools/applicator.py')
-rw-r--r--.tools/applicator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.tools/applicator.py b/.tools/applicator.py
index aa84ce359..6fa8d6e83 100644
--- a/.tools/applicator.py
+++ b/.tools/applicator.py
@@ -33,7 +33,7 @@ for line in f:
subprocess.call("cd ../../server-code ; wget https://github.com/HerculesWS/Hercules/commit/"+line.replace("\n", "")+".diff", shell=True)
print "Applying patch..."
#subprocess.call("cd ../../server-code ; ls", shell=True)
- subprocess.call("cd ../../server-code ; git apply --ignore-whitespace --exclude=doc/ --exclude=tools/ --exclude=db/ --reject "+line.replace("\n", "")+".diff", shell=True)
+ subprocess.call("cd ../../server-code ; git apply --ignore-whitespace --exclude=doc/ --exclude=tools/ --exclude=db/ --exclude=npc/ --exclude=conf/ --reject "+line.replace("\n", "")+".diff", shell=True)
print "Patch applied"
subprocess.call("cd ../../server-code ; rm "+line.replace("\n", "")+".diff", shell=True)
print "Patch deleted (success)"