X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fdecks%2Fcargo%2Fclass_TrainDeck.php;h=e22618b7fd18a2d60271ad0da431c06dbaf10faf;hp=b2666faab68fd99f2ed7e5dda23bb731b366143f;hb=2b7c3e43b2fe0f3c5ae0455d13fa7743b638049f;hpb=55b327a3f5f2fe1d244532e07be7444e94b2a768 diff --git a/application/ship-simu/main/structures/extended/decks/cargo/class_TrainDeck.php b/application/ship-simu/main/structures/extended/decks/cargo/class_TrainDeck.php index b2666fa..e22618b 100644 --- a/application/ship-simu/main/structures/extended/decks/cargo/class_TrainDeck.php +++ b/application/ship-simu/main/structures/extended/decks/cargo/class_TrainDeck.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @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 * @@ -26,15 +26,6 @@ class TrainDeck extends BaseDeck implements TradeableItem, ConstructableShipPart protected function __construct () { // Call parent constructor parent::__construct(__CLASS__); - - // Set description - $this->setObjectDescription("Zug-Deck"); - - // Generate unique ID number - $this->generateUniqueId(); - - // Clean up a little - $this->removeSystemArray(); } // LKW-Deck erstellen @@ -42,12 +33,6 @@ class TrainDeck extends BaseDeck implements TradeableItem, ConstructableShipPart // Get new instance $trainInstance = new TrainDeck(); - // Debug message - if ((defined('DEBUG_DECK')) || (defined('DEBUG_ALL'))) $trainInstance->getDebugInstance()->output(sprintf("[%s:%d] Ein LKW-Deck wird konstruiert...
\n", - __CLASS__, - __LINE__ - )); - // Abmasse extrahieren $trainInstance->extractDimensions($dim); @@ -65,13 +50,6 @@ class TrainDeck extends BaseDeck implements TradeableItem, ConstructableShipPart public function isTradeable () { return true; } - - /** - * Limits this object with an ObjectLimits instance - */ - public function limitObject (ObjectLimits $limitInstance) { - ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!"); - } } // [EOF]