From 0f6aef18e300b5f93f306b51261b3758c9cc1904 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 27 Jul 2022 16:18:48 -0300 Subject: Fix a division, but we should just replace __div__ builtins --- qeditor.rpy | 6 +++--- 1 file 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) -- cgit v1.2.3-60-g2f50