Browse Source

Fix pill dropping

master
Ben Kurtovic 12 years ago
parent
commit
005d6f53df
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      tank.nls

+ 6
- 2
tank.nls View File

@@ -152,8 +152,11 @@ to kill-tank
ask max-one-of tanks [who] [ ; Tank that was just spawned
play-sound "spawn"
]
if number-of-pills > 0 [
ask patch ((3 - random 6) + xcor) ((3 - random 6) + ycor) [

while [number-of-pills > 0] [
let mpxcor pxcor
let mpycor pycor
ask one-of patches with [(count pillboxes-here) = 0 and pxcor <= (mpxcor + 2) and pxcor >= (mpxcor - 2) and pycor <= (mpycor + 2) and pycor >= (mpycor - 2)] [
spawn-pillbox
ask max-one-of pillboxes [who] [
set armor 0
@@ -161,6 +164,7 @@ to kill-tank
set shape "pillbox-dead"
]
]
set number-of-pills number-of-pills - 1
]
die
end


Loading…
Cancel
Save