diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-01 00:51:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-01 00:51:28 -0300 |
commit | a2e25188684b1c24074ffbf275c7c5eb51bfc27f (patch) | |
tree | b4c25a24c3124aeba4eb7d4a06e0184942d75785 /npc/items/shovel.txt | |
parent | 1d428cad88a591b20adb06461749ed40e9dc9f0a (diff) | |
download | serverdata-a2e25188684b1c24074ffbf275c7c5eb51bfc27f.tar.gz serverdata-a2e25188684b1c24074ffbf275c7c5eb51bfc27f.tar.bz2 serverdata-a2e25188684b1c24074ffbf275c7c5eb51bfc27f.tar.xz serverdata-a2e25188684b1c24074ffbf275c7c5eb51bfc27f.zip |
[skip ci] minor
Diffstat (limited to 'npc/items/shovel.txt')
-rw-r--r-- | npc/items/shovel.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index be9daab1b..4b60d2773 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -20,7 +20,8 @@ function script shovel_scriptItem { $@WBT_Random_map$[.@wtc] = .@map$; $@WBT_Random_x[.@wtc] = .@x; $@WBT_Random_y[.@wtc] = .@y; - debugmes "Buried"+.@amount+" "+getitemname(.@id); + //debugmes "Buried"+.@amount+" "+getitemname(.@id); + return; } // shovel_scatter( map, x1, y1, x2, y2, items_array, {amount} ) @@ -35,6 +36,7 @@ function script shovel_scatter { for (.@i = 0; .@i < .@amount; .@i++) shovel_scriptItem(.@map$, rand(.@x1,.@x2), rand(.@y1,.@y2), any_of(.@id)); + return; } |