diff options
Diffstat (limited to 'not/World.lua')
-rw-r--r-- | not/World.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/not/World.lua b/not/World.lua index 86b1560..7317617 100644 --- a/not/World.lua +++ b/not/World.lua @@ -315,6 +315,10 @@ function World:draw () love.graphics.line(x1,y1,x2,y2) end + for _,naut in pairs(self.Nauts) do + naut:drawTag(offset_x, offset_y, scale) + end + -- Draw HUDs for _,naut in pairs(self.Nauts) do -- I have no idea where to place them T_T |