#!/usr/bin/ruby

require "mooix"
require "mooix/thing"

Mooix.run do
  old_loc = self.location
  
  self.super(@args)

  args = Hash[*@args]
  if (args["do_preposition"] == "down") and (self.location != old_loc)
    self.waddle
  end
end
