summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qeditor.rpy6
1 files changed, 3 insertions, 3 deletions
diff --git a/qeditor.rpy b/qeditor.rpy
index b8e038c..df6f707 100644
--- a/qeditor.rpy
+++ b/qeditor.rpy
@@ -256,9 +256,9 @@ init python:
"music": "bgm03",
"bg": "battle",
"loot": [
- ["1010", 1000+(qeid/5*25)],
- ["1020", 100+(qeid/5*10)],
- ["1030", 10+(qeid/5)]
+ ["1010", 1000+(qeid//5*25)],
+ ["1020", 100+(qeid//5*10)],
+ ["1030", 10+(qeid//5)]
],
"waves": []})
renpy.notify("New quest added: %d" % qeid)