Skip to content

Commit

Permalink
Changed declaration on newest functions
Browse files Browse the repository at this point in the history
  • Loading branch information
v-chyou authored Feb 27, 2020
1 parent 67eb129 commit 469432a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ namespace hourOfCode {
*/
//% block="agent place acacia %dir"
//% weight = 98
export function agentPlaceAcacia(dir: SixDirection): void {
export function agentPlaceAcacia(dir: SixDirection) {
let MIN_SLOT = 1
let MAX_SLOT = 27
let randomSlot = Math.randomRange(MIN_SLOT, MAX_SLOT)
Expand All @@ -280,7 +280,7 @@ namespace hourOfCode {
*/
//% block="agent plant carrots"
//% weight = 99
export function agentPlantCarrots(): void {
export function agentPlantCarrots() {
let MIN_SLOT = 1
let MAX_SLOT = 27
let randomSlot = Math.randomRange(MIN_SLOT, MAX_SLOT)
Expand Down

0 comments on commit 469432a

Please sign in to comment.