#!/usr/bin/python

from mooix import *

# Remember where the duck currenty is.
old_loc = this.location

# Call super to atually handle the put.
this.super()

# Was it put down, and did it move? If so, make it waddle.
if args['do_preposition'] == 'down' and old_loc != this.location:
    this.waddle()
