diff --git a/game/scripts/interface/parcel.rpy b/game/scripts/interface/parcel.rpy index 2a24ad65..7738d863 100644 --- a/game/scripts/interface/parcel.rpy +++ b/game/scripts/interface/parcel.rpy @@ -1,4 +1,3 @@ - init python: class Parcel(object): """ @@ -18,7 +17,10 @@ init python: self.wait = wait self.label = label self.func = func - self.queue = mailbox.parcels + + @property + def queue(self): + return mailbox.parcels def send(self): self.mailed = True