diff options
author | rubidium <rubidium@openttd.org> | 2010-08-27 22:21:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-27 22:21:23 +0000 |
commit | 3e9e1b8e659c7fe36ac2188fb86ac601a8210d50 (patch) | |
tree | 914d8fa55046ec016a4a6ca60210ceba87bad2c8 /src/table | |
parent | 01927590a52ee49192a47335d4509d91e0c5d27d (diff) | |
download | openttd-3e9e1b8e659c7fe36ac2188fb86ac601a8210d50.tar.xz |
(svn r20638) -Codechange: split object.h
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/object_land.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/object_land.h b/src/table/object_land.h index a445296b2..1085550cb 100644 --- a/src/table/object_land.h +++ b/src/table/object_land.h @@ -124,7 +124,7 @@ static const DrawTileSprites _object_hq[] = { #undef TILE_SPRITE_LINE /** Specification of the original object structures. */ -static const ObjectSpec _original_objects[] = { +extern const ObjectSpec _original_objects[] = { { STR_LAI_OBJECT_DESCRIPTION_TRANSMITTER, 0x11, 0, 0, OBJECT_FLAG_CANNOT_REMOVE | OBJECT_FLAG_REQUIRE_FLAT | OBJECT_FLAG_ONLY_IN_SCENEDIT }, { STR_LAI_OBJECT_DESCRIPTION_LIGHTHOUSE, 0x11, 0, 0, OBJECT_FLAG_CANNOT_REMOVE | OBJECT_FLAG_REQUIRE_FLAT | OBJECT_FLAG_ONLY_IN_SCENEDIT }, { STR_TOWN_BUILDING_NAME_STATUE_1, 0x11, 0, 0, OBJECT_FLAG_CANNOT_REMOVE | OBJECT_FLAG_ONLY_IN_GAME | OBJECT_FLAG_ONLY_IN_SCENEDIT }, // Yes, we disallow building this everywhere. Happens in "special" case! |