aboutsummaryrefslogtreecommitdiff
path: root/advtrains.zip
Commit message (Collapse)AuthorAge
* update zip (release 1.7)orwell962017-03-12
|
* Fix collision issuesorwell962017-02-21
|
* Fix manual operation of mesecon switchesorwell962017-02-20
|
* fix crash on seatpc nilorwell962017-02-15
|
* fix #34 - end_index not set when step_a returned in phase 2orwell962017-02-15
|
* Proper implementation for getting on by walking into train, rework damage ↵orwell962017-02-09
| | | | and player controls in train, fix death and join bugs, do not spawn bones on death
* Fix ATC components being randomly ignored by trains.orwell962017-02-05
| | | | | Also add warnings to off_track stuff Also pack for release
* Commit 1.6.2orwell962017-02-04
| | | | | | | | - Add some more stuff to API for LuaATC rails - Warn on strange events even if debug info is disabled - save atlatc on shutdown too - fix detector rails in unloaded chunks - do not fail silently in simple ATC rails
* pack for releaseorwell962017-02-03
|
* Add documentation and pack for releaseorwell962017-02-02
|
* Limit dtime to prevent trains moving too far in a single steporwell962017-01-29
| | | | and update zip
* Fix a crash, update translations and zip fileorwell962017-01-28
|
* update ziporwell962017-01-25
|
* update ziporwell962017-01-19
|
* update ziporwell962017-01-18
|
* update zip file and disable debug messagesorwell962017-01-17
|
* ziporwell962017-01-10
|
* update ziporwell962017-01-06
|
* also print ATC reverse command warningorwell962017-01-04
| | | | and move atc_command.txt at a better place
* Purge all debug messages and change 'print' function name to 'atprint'orwell962017-01-04
| | | | Ready for 2.0 release.
* update makefile to new circumstancesorwell962017-01-04
|
* Restructure mod directoryorwell962017-01-04
|
* Fix behavior when using get_look_yaw() instead of get_look_horizontal()orwell962016-12-13
| | | | get_look_yaw returns values that are 90° rotated
* Don't decrease stack itemcount of slope placer in creativeorwell962016-12-13
|
* Implement better slope placement systemorwell962016-12-13
| | | | Only look in the desired direction and place slope node on lowest slope part. will automatically adjust slope to next higher node.
* try to fix damage bugorwell962016-12-05
|
* fix bug about seats on wagonorwell962016-12-04
| | | | sometimes a single character can cause great mess...
* remove the legacy replacement lbms/abmsorwell962016-12-03
| | | | Until now, everyone should have updated at least once...
* add descript { assert(getBlockBuffered(y) == NULL); // Pre-condition v3s16 blockpos_map(m_pos.X, y, m_pos.Y); MapBlock *block = new MapBlock(m_parent, blockpos_map, m_gamedef); return block; } MapBlock * MapSector::createBlankBlock(s16 y) { MapBlock *block = createBlankBlockNoInsert(y); m_blocks[y] = block; return block; } void MapSector::insertBlock(MapBlock *block) { s16 block_y = block->getPos().Y; MapBlock *block2 = getBlockBuffered(block_y); if(block2 != NULL){ throw AlreadyExistsException("Block already exists"); } v2s16 p2d(block->getPos().X, block->getPos().Z); assert(p2d == m_pos); // Insert into container m_blocks[block_y] = block; } void MapSector::deleteBlock(MapBlock *block) { s16 block_y = block->getPos().Y; // Clear from cache m_block_cache = NULL; // Remove from container m_blocks.erase(block_y); // Delete delete block; } void MapSector::getBlocks(MapBlockVect &dest) { for(std::map<s16, MapBlock*>::iterator bi = m_blocks.begin(); bi != m_blocks.end(); ++bi) { dest.push_back(bi->second); } } /* ServerMapSector */ ServerMapSector::ServerMapSector(Map *parent, v2s16 pos, IGameDef *gamedef): MapSector(parent, pos, gamedef) { } | Together with the rewritten collision system it should work for now.
* sandstone brick platformorwell962016-11-05
|
* 100th commit: disable debug messagesorwell962016-11-03
|
* make smoke also distribute horizontally a bitorwell962016-11-03
|
* Add a box wagonorwell962016-11-03
| | | | Alongside with coding wagon inventories, and several bugfixes
* move a line to correct behaviororwell962016-11-03
|
* rework entity handlingorwell962016-11-02
| | | | some modularization, clarify 'initialized' property, some re-implementations
* fix unloaded map chunk travellingorwell962016-10-29
|
* Include zip in repo, because of hosting. No .tar.gz.orwell962016-10-27