Reformat and clean up reactor and base scripts
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user