Reformat and clean up reactor and base scripts

This commit is contained in:
P0nk
2021-09-09 23:38:09 +02:00
parent 3f43fe82d0
commit d9590078f5
231 changed files with 1192 additions and 1075 deletions

View File

@@ -25,10 +25,12 @@
*/
function act() {
rand = Math.floor(Math.random() * 4);
if (rand < 1) rand = 1;
//We'll make it drop a lot of crap :D
for (var i = 0; i<rand; i++) {
rm.sprayItems(true, 1, 30, 60, 15);
}
rand = Math.floor(Math.random() * 4);
if (rand < 1) {
rand = 1;
}
//We'll make it drop a lot of crap :D
for (var i = 0; i < rand; i++) {
rm.sprayItems(true, 1, 30, 60, 15);
}
}