diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-07-28 00:29:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-07-28 00:29:19 -0300 |
commit | 2f9ba20dec23060ea21d90feb358da7691993d67 (patch) | |
tree | 2e60569b33f8ee7f6c9a5f6c5177f84f2f1c6d58 /ueditor_adv.rpy | |
parent | 6ae2f97570075290d4661b92756a1e189f41097d (diff) | |
download | sdk-2f9ba20dec23060ea21d90feb358da7691993d67.tar.gz sdk-2f9ba20dec23060ea21d90feb358da7691993d67.tar.bz2 sdk-2f9ba20dec23060ea21d90feb358da7691993d67.tar.xz sdk-2f9ba20dec23060ea21d90feb358da7691993d67.zip |
The Elves are now a valid faction. Also, fix bugs
Diffstat (limited to 'ueditor_adv.rpy')
-rw-r--r-- | ueditor_adv.rpy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ueditor_adv.rpy b/ueditor_adv.rpy index 9f53a02..32ac53d 100644 --- a/ueditor_adv.rpy +++ b/ueditor_adv.rpy @@ -79,7 +79,7 @@ label ueditor_supernew: atd = " +%d" % i allunitsbase.append({"skill_id": 0, "strength": 500, - "rare": rar+i, + "rare": rar, "name": "%s%s" % (name, atd), "ability_id": 0, "attribute": ele, @@ -94,6 +94,7 @@ label ueditor_supernew: "flavor": desc}) current = len(allunitsbase)-1 ueditor_recalc(False, shp, ssr) + rar += 1 i+=1 pass |