]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/drives/motor/class_Motor.php
Copyright updated, menu class added for 'home'
[shipsimu.git] / application / ship-simu / main / drives / motor / class_Motor.php
index b8f537701a39211ca80306c47d03d82d4583e07f..987d0850c932cd4e597e34e923f12780297c044b 100644 (file)
@@ -4,9 +4,9 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.ship-simu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -26,15 +26,6 @@ class Motor extends BaseDrive implements TradeableItem, ConstructableShipPart {
        protected function __construct() {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set description
-               $this->setObjectDescription("Namenloser Motor");
-
-               // Generate unique ID number
-               $this->createUniqueID();
-
-               // Clean up a little
-               $this->removeSystemArray();
        }
 
        // Einen Motor erstellen
@@ -42,15 +33,7 @@ class Motor extends BaseDrive implements TradeableItem, ConstructableShipPart {
                // Get new instance
                $motorInstance = new Motor();
 
-               // Debug message
-               if ((defined('DEBUG_DRIVE')) || (defined('DEBUG_ALL'))) $motorInstance->getDebugInstance()->output(sprintf("[%s:%d] Motor <strong>%s</strong> wird gebaut...<br />\n",
-                       __CLASS__,
-                       __LINE__,
-                       $descr
-               ));
-
                // Beschreibung und Abmasse setzen
-               $motorInstance->setObjectDescription($descr);
                $motorInstance->setWidth($w);
                $motorInstance->setHeight($h);
                $motorInstance->setLength($l);