Loading

Paste #peze0kbvt

  1. (bin3)andy@pdq2s-MacBook-Pro-2 iron-horse default-r1084 (tip) ~/Documents/OTTD_graphics/Iron_Horse/iron-horse $ make pw=1
  2. [GENERATE]
  3. [BUILD] build_iron_horse.py
  4. [RENDER GRAPHICS] render_graphics.py
  5. [IMPORT VEHICLES] iron_horse.py

Paste #puljoogty

  1. /**
  2.  * Builds a lock.
  3.  * @param tile Central tile of the lock.
  4.  * @param dir Uphill direction.
  5.  * @param flags Operation to perform.

Paste #pg2zecifk

  1. 0000000: 4354 4847 0102 Header + version
  2.          0100 0000    One animation
  3.          0100 0000    One frame
  4.          0100
  5. 0000010: 0000   One sprite element

Paste #psiivpgdr

  1. static CommandCost DoBuildLock(TileIndex tile, DiagDirection dir, DoCommandFlag flags)
  2. {
  3.     CommandCost cost(EXPENSES_CONSTRUCTION);
  4.  
  5.     int delta = TileOffsByDiagDir(dir);

Paste #pkba8rj3l

  1. diff --git a/pixa/__init__.py b/pixa/__init__.py
  2. --- a/pixa/__init__.py
  3. +++ b/pixa/__init__.py
  4. @@ -1,1 +1,1 @@
  5. -from pixa import *

Paste #piy9msgw1

  1. static CommandCost DoBuildLock(TileIndex tile, DiagDirection dir, DoCommandFlag flags)
  2. {
  3.     CommandCost cost(EXPENSES_CONSTRUCTION);
  4.  
  5.     int delta = TileOffsByDiagDir(dir);

Paste #pd1xc7wzz

  1. git fetch upstream
  2. git branch --list -a
  3.  
  4. git merge upstream/master
  5. git push origin

Paste #prugkdgjq

  1. static CommandCost DoBuildLock(TileIndex tile, DiagDirection dir, DoCommandFlag flags)
  2. {
  3.     CommandCost cost(EXPENSES_CONSTRUCTION);
  4.  
  5.     int delta = TileOffsByDiagDir(dir);

Paste #p0fosxr56

  1. static CommandCost DoBuildLock(TileIndex tile, DiagDirection dir, DoCommandFlag flags)
  2. {
  3.     CommandCost cost(EXPENSES_CONSTRUCTION);
  4.  
  5.     int delta = TileOffsByDiagDir(dir);

alignment create SE gui

  1.                 EndContainer(),
  2.                 /* Flat map height. */
  3.                 NWidget(NWID_HORIZONTAL),
  4. -                   NWidget(WWT_TEXT, COLOUR_ORANGE),
  5. -                                               SetDataTip(STR_SE_MAPGEN_FLAT_WORLD_HEIGHT, STR_NULL), SetPadding(1, 0, 0, 0),

Paste #pjsb52s6w

  1.     # new new 2
  2.         years = set()
  3.         for variant in self.model_variants:
  4.             years.add(variant.intro_date)
  5.             years.add(variant.end_date)

Paste #pnnxdykq8

  1.     # new new new
  2.         years = sorted(set((variant.intro_date, variant.end_date) for variant in self.model_variants))
  3.  
  4.     # new new
  5.         years = set()

Paste #p0bkppph9

  1.     # new new new
  2.         years = sorted((variant.intro_date, variant.end_date) for variant in self.model_variants)
  3.  
  4.     # new new
  5.         years = set()

Paste #pswphv1ib

  1.     #new
  2.         years = set()
  3.         for dates in [(variant.intro_date, variant.end_date) for variant in self.model_variants]:
  4.             years = years.union(dates)
  5.         years = sorted(years)

FiX for FS#6208

  1. @@ -1138,8 +1138,6 @@
  2.             TileType tile_type;
  3.             TileInfo tile_info;
  4.             _cur_ti = &tile_info;
  5. -           tile_info.x = tilecoord.x * TILE_SIZE; // FIXME tile_info should use signed integers