From 0ecdd8bc98ba583bbee801b838d785c6f881d7df Mon Sep 17 00:00:00 2001
From: Stijn Buys <ingar@osirion.org>
Date: Sat, 9 Oct 2010 20:23:01 +0000
Subject: removed physics references, transfer inventory on ship aquisition

---
 src/core/item.cc | 9 +++++++++
 src/core/item.h  | 3 +++
 2 files changed, 12 insertions(+)

(limited to 'src/core')

diff --git a/src/core/item.cc b/src/core/item.cc
index 8ab4784..df12885 100644
--- a/src/core/item.cc
+++ b/src/core/item.cc
@@ -27,10 +27,19 @@ Item::Item(const Info *info)
 	set_timestamp(game() ? game()->timestamp() : 1);
 }
 
+Item::Item(const Item &other)
+{
+	item_info = other.info();
+	item_amount = other.amount();
+	item_price = other.price();
+	set_timestamp(game() ? game()->timestamp() : 1);
+}
+
 Item::~Item()
 {
 	item_info = 0;
 	item_amount = 0;
+	item_amount = 0;
 }
 
 void Item::set_amount(const long amount)
diff --git a/src/core/item.h b/src/core/item.h
index e4e8507..0e9e167 100644
--- a/src/core/item.h
+++ b/src/core/item.h
@@ -21,6 +21,9 @@ class Item
 public:
 	Item(const Info *info);
 	
+	/// copy constructor
+	Item(const Item &other);
+	
 	~Item();
 	
 	/* ---- inspectors --------------------------------------------- */
-- 
cgit v1.2.3