X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fdecks%2Fcargo%2Fclass_TrainDeck.php;h=07410eaefac8e88c0e7c653dc2e5be02d475cd0f;hb=4f70843ae8428f051d70ccff5bb43fc4c03dda8d;hp=d5d6eaa36f1e30e9e90175f4d77df19ab85dd6b0;hpb=d527a312ec4b2983fc0ecda2179ce335c1a5a1f9;p=shipsimu.git 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 d5d6eaa..07410ea 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 @@ -2,11 +2,11 @@ /** * A train deck with rails constructed in it * - * @author Roland Haeder + * @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 + * @link http://www.shipsimu.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,28 +26,13 @@ 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 - public final static function createTrainDeck ($numDecks, $dim) { + public static final function createTrainDeck ($numDecks, $dim) { // 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...", - __CLASS__, - __LINE__ - )); - // Abmasse extrahieren $trainInstance->extractDimensions($dim);