diff options
Diffstat (limited to 'main.rhm')
-rw-r--r-- | main.rhm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -49,7 +49,8 @@ test(!entity.move(0, 0), "blocked by wall") test(entity.move(1,1), "move by wall") reset_entity(entity, 0, 0) -let other_ent = world.EntityGatherable(1, 1, 1, chunk) +entity.equip[world.Slot.right_hand] := world.Item.bronze_axe +let other_ent = world.EntityGatherable(1, 1, 1, chunk, world.ItemCap.chop) let gather_result = entity.gather(other_ent) test(gather_result == world.ActionResponse.ok || gather_result == world.ActionResponse.unsuccessful, "gathering") |