summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Noise: Prevent unittest crash caused by division by zeroSmallJoker2018-06-03
|
* Sneak: Stripped down versionSmallJoker2018-06-03
| | | | | | | Fix taking damage caused by sneaking over a nodebox gap. Fix strange behaviour on stair nodeboxes. Enable jumping from node edges while sneaking. Enable movement around corners while sneaking on a 1-node-high groove in a wall.
* Include TILE_MATERIAL_OPAQUE in shaders header (#6086)stujones112018-06-03
|
* Tile material: Add 'TILE_MATERIAL_OPAQUE', use for drawtype 'NDT_NORMAL'stujones112018-06-03
| | | | | Prevents normal drawtype nodes having transparency. Avoids clients cheating by using 'x-ray' texture packs with transparent textures.
* Mgv7: Fix undefined 'float_mount_height'paramat2018-06-03
| | | | | | | | Commit cad10ce3b747b721fd63784915e05f12bc488128 altered the parameter 'float_mount_height' but was missing the necessary line in the constructor to get the altered value from 'params'. Fixes 3D floatland terrain generating everywhere.
* Fix for empty key/value when reading item string with wear but no metadata ↵Jesse McDonald2018-06-03
| | | | (#6058)
* Mgv7: Clean up divide-by-zero fixparamat2018-06-03
|
* Mgv7: Avoid divide-by-zero errorsparamat2018-06-03
| | | | | Some settings of paramters can cause mgv7 variables to be -inf, nan or -nan. This can cause massive vertical columns of water to appear above sea level.
* Fix render order of overlays (#6008)Dániel Juhász2018-06-03
| | | | | | | | * Fix render order of overlays * Use C++11 loops * Fix time_t
* Fix console resize issue when maximising game window (#6023)Ezhh2018-06-03
|
* Fix console not being properly resized after window size changed (#6020)Zeno-2018-06-03
|
* Automatic item and node colorization (#5640)Dániel Juhász2018-06-03
| | | | | | | | | | | | | | | | | * Automatic item and node colorization Now nodes with a palette yield colored item stacks, and colored items place colored nodes by default. The client predicts the colorization. * Backwards compatibility * Use nil * Style fixes * Fix code style * Document changes
* find_nodes_in_area: Extend maximal count to U32_MAX (#5277)SmallJoker2018-06-03
| | | | | | | Extend documentation, limit area volume Remove u16 count limitation * Prevent integer overflow, replace minp/maxp with pos1/pos2
* Verify HudSetParams input when hotbar textures are set (#6013)Loïc Blot2018-06-03
| | | | | | * Verify HudSetParams input when hotbar textures are set This fix #6011
* (Re)spawn players within 'mapgen_limit'paramat2018-06-03
| | | | | | | | | | | | | Previously, findSpawnPos() did not take the 'mapgen_limit' setting into account, a small limit often resulted in a spawn out in the void. Use the recently added 'calcMapgenEdges()' to get max spawn range through a new mapgenParams function 'getSpawnRangeMax()'. Previously, when a player respawned into a world, 'objectpos_over_limit()' was used as a check, which was inaccurate. Use the recently added 'saoPosOverLimit()' to get exact mapgen edges. Also fix default value of 'm_sao_limit_min'.
* Add a server-sided way to remove color codes from incoming chat messages (#5948)red-0012018-06-03
| | | | | | | | | These code be generated by CSM, a modded client or just copy and pasted by the player. Changes - Update configuration example and setting translation file. - Remove colour codes before logging chat. - Add setting to remove colour codes before processing the chat.
* Fix sending color codes to clients that don't support them. (#5950)red-0012018-06-03
| | | Also remove `disable_escape_sequences` since it's not needed anymore.
* Fix segmentation fault with tool capabilities (#5899)ShadowNinja2018-06-03
|
* Properly remove SAO when worldedges are overtaken (#5889)Loïc Blot2017-06-03
| | | | | | | | | | | | * LuaEntitySAO: Remove beyond outermost mapchunk edges Based on a commit by, and with help from, nerzhul. Add 2 functions to class Mapgen: A function to calculate actual mapgen edges, called from the Mapgen constructor. A function called indirectly from content_sao.cpp per entity step to check SAO position is within mapgen edges. * Calculate borders from params not mapgen, which is not available everytime
* Tooltips: Unify the tooltip[] and list[] description tooltip display ↵SmallJoker2017-06-03
| | | | | | functions (#5848) * Tooltips: Unify the tooltip[] and list[] description tooltip display functions
* Do not shade inventory items with textures (#5869)Dániel Juhász2017-06-01
| | | | This commit restores the old behavior: if an inventory item has an own inventory texture, it will not be shaded.
* Show singlenode mapgen to menu (#5868)Loïc Blot2017-06-01
| | | Fix #5867
* Fix dropdown menu selection (#5847)red-0012017-06-01
| | | This fixes a bug that occurred when the selection list of a drop down menu was changed but the name was still the same.
* Nametag: remove colour codes before calculating alignment. (#5862)red-0012017-05-31
|
* Don't add damage flash while punch texture modifier is active (#5767)stujones112017-05-29
|
* guiVolumeChange: prevent wrong value position by using 1 label instead of 2 ↵Loïc Blot2017-05-28
| | | | | | | | | (#5839) * Use only one label instead of two for the soundText, this permit to ensure both label & values are aligned * Add '%' character too, to reflect it's a percentage volume * Remove rect on regenerateGui (upper part) which shadows outer part and which is not needed outside of the DesiredRect affectation Fix issue #5837
* Mapgen files: Update and correct copyright creditsparamat2017-05-26
|
* Time: Change old `u32` timestamps to 64-bit (#5818)SmallJoker2017-05-26
| | | | MacOSX build fix + cleanups
* Enhance ABM performance a little bit by removing two std::set copy (#5815)Loïc Blot2017-05-25
| | | | | | | | | | * Enhance ABM performance a little bit by removing two std::set copy * ActiveBlockModifier::getTriggerContents now returns a const ref * ActiveBlockModifier::getRequiredNeighbors now returns a const ref * ActiveBlockModifier::getRequiredNeighbors is now purely virtual * Little code style fix
* Mgv6 mudflow: Remove decoration if 'dirt with grass' below flows away (#5798)Paramat2017-05-25
| | | | | | | Mudflow of a neighbouring mapchunk extends into a mapchunk's edge, and could remove 'dirt with grass' from under a decoration, creating unsupported decorations. Remove any decoration above if a 'dirt with grass' node is removed by mudflow.
* Close formspec on client shutdown. (#5811)red-0012017-05-25
| | | This ensures the shutting down progress bar is correctly rendered. This fixes #3050.
* Revert 1469424 and fix wrong char position when doing mouse selection on ↵Loïc Blot2017-05-24
| | | | | | | | | | | | | | | | intlGUIEditBox (#5806) * Revert 1469424075affce7c27bb44e5a5cbd51485e44b2 and fix wrong char position when doing mouse selection on intlGUIEditBox position should look at current line not the whole text and shift 1 character on the last line (due to \0 string delimiter) * Finish the fix and prevent values under zero for getCursorPos which crash the program if found * Forget to remove old comment * fix zero to NULL * Fix typo
* Fix wrong return value in get_sky Lua call since ↵Loic Blot2017-05-23
| | | | | | ad9fcf859ec2347325830e09504ae96968b51ea8 Fix #5803
* Client crashfix: load meta after digging (#5801)Paramat2017-05-23
| | | | | | | Fixes a crash caused in MTGame by breaking and right-clicking a chest. If loading meta, digging, node can disappear and we looked at meta, which is wrong because meta became NULL. Pointer is invalidated and we read wrong memory area
* LINT fix & check all files with clang-formatLoic Blot2017-05-22
| | | | Seems the diff mode doesn't work well, PR are detected as working whereas in master it's shown it's problematic (and really problematic). Use same check everywhere
* [CSM] Add send_chat_message and run_server_chatcommand API functions (#5747)Pierre-Adrien Langrognet2017-05-21
| | | | | | | | | | | | * [CSM] Add send_chat_message and run_server_chatcommand API functions * Add client-side chat message rate limiting * Limit out chat queue size * [CSM] Add minetest.clear_out_chat_queue API function and .clear_chat_queue chatcommand * Last fixes/cleanups before merge
* Fix LINT broken by dfa0c15ce045705f05487d623dc7beca6c945b4bLoic Blot2017-05-21
|
* [CSM] Add function to get the definition of items (#5732)bigfoot5472017-05-21
| | | | | Add node def and item def documentation. Please be ready for merge!
* Prevent fall damage from overflowing when falling from a large height. (#5791)red-0012017-05-21
|
* Real control fix (#5787)Loïc Blot2017-05-20
| | | | | | | | | | * Allow enabling and disabling mods. * Re-fix 605599b6f150b89ba6539c4d088231b326adcb48 This breaks some chars like € in chat. Instead verify is char is a non control char -> iswcntrl
* Fix instant digging (#5785)you2017-05-20
| | | | Use runData.dig_time_complete instead of params.time to find out whether it's instant digging. runData.dig_time_complete is set to something very big if the node can't be dug, whereas param.time is 0 when digging is impossible or it's instant digging. So not using param.time fixes #5728.
* Fix wchar_t type on 605599b6f150b89ba6539c4d088231b326adcb48Loic Blot2017-05-20
| | | | event.KeyInput.Char is a wchar_t, iswprint should be used
* Particle spawner: Do not spawn particles distant from player (#5766)Paramat2017-05-20
| | | | | | | | | Previously, every particle was rendered by (even if not actually visible to) the client regardless of distance. This significantly reduced client FPS. Acts clientside, particle spawners are always sent to clients, but each particle is checked for distance from the player. As with 'add particle' the distance limit is set to 'max block send distance' as this determines how far a client can see.
* [CSM] Correct the log destination of print() (#5784)SmallJoker2017-05-20
|
* Fix CSM crash (#5779)red-0012017-05-20
| | | Caused by dc5bc6c and them made worse by 5ebf8f9
* chat.cpp fix wchar_t isspace -> iswspace & wrong isspace on an index (#5783)Loïc Blot2017-05-20
|
* Cleanup in content_mapblock (#5746)numberZero2017-05-20
| | | NDT_LIQUID is being drawn by MapBlockMesh since a long time ago...
* Improve password change menu (#5757)red-0012017-05-20
| | | | - Fix the GUI getting messed up when resizing - Save the input when resizing
* Fix shift key producing space in console (#5777)Craig Davison2017-05-20
| | | | * Fix shift key producing space in console
* this might fix #5661, needs testing (#5775)red-0012017-05-20
|