diff options
-rw-r--r-- | npc/items/shovel.txt | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index 18a2b2fc4..fc30b9168 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -39,15 +39,10 @@ function script shovel_scatter { .@amount=getarg(5,1); freeloop(true); // DANGEROUS - for (.@i = 0; .@i < .@amount; .@i++) { - .@id=getarg( rand(getargcount()-6) +6); - //shovel_scriptItem(.@map$, rand(.@x1,.@x2), rand(.@y1,.@y2), .id); - } + for (.@i = 0; .@i < .@amount; .@i++) + shovel_scriptItem(.@map$, rand(.@x1,.@x2), rand(.@y1,.@y2), getarg(rand(getargcount()-6)+6)); freeloop(false); - // For testing - .@debugid=(getargcount()-6)+6; - debugmes("array len: %d, minimum index 6, maximum index %d (last was %d)", getargcount(), .@debugid, .@id); .@wtc = getarraysize($@WBT_Random_id); debugmes "Scattered "+.@amount+" items on "+.@map$+". Currently scattered: "+.@wtc; return; |