summaryrefslogtreecommitdiff
path: root/modLoader/mods.gsc
diff options
context:
space:
mode:
Diffstat (limited to 'modLoader/mods.gsc')
-rw-r--r--modLoader/mods.gsc8
1 files changed, 7 insertions, 1 deletions
diff --git a/modLoader/mods.gsc b/modLoader/mods.gsc
index f6f8b58..489db9e 100644
--- a/modLoader/mods.gsc
+++ b/modLoader/mods.gsc
@@ -105,7 +105,12 @@ setBoxPrice(l, price)
*/
setPlayerPoints(p, points)
{
- p.score = points;
+ if (l.round_number == 1)
+ {
+ l waittill("start_of_round");
+ p.score = points;
+ }
+
}
/*
@@ -432,3 +437,4 @@ useCrosshairs(p)
p.dot = drawCounter(p.dot, 0, 0, "default", 1.7);
p.dot.label = &"+";
}
+