aboutsummaryrefslogtreecommitdiff
path: root/src/client/clientenvironment.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-10-08Revert Client::sendPlayerPos optimization (part of 81c7f0a) (#9025)ANAND1-2/+3
Comment out the if statement that prevents sending TOSERVER_PLAYERPOS if the player is dead.
2019-10-06Fix upright_sprite lighting when colors are setsfan51-2/+3
fixes #9020
2019-10-06Revert "Fix the bgcolor formspec element (#8716)" (#9018)SmallJoker2-14/+11
This reverts commit 1db3d252cff9e8d61fecf1052d7497813851da51. Temporary solution until a compatible solution is found to define both - formspec and fullscreen backgrounds.
2019-10-05Fix warnings in guiButton.hsfan51-23/+25
2019-10-05Merge pull request #8166 from Warr1024/fix7020Warr10241-1/+12
Fix (or workaround?) for 'Falling nodes with node inventory cause crash when unloaded'
2019-10-05Fix unwanted detaching when damage = 0Jacob Lifshay1-2/+4
2019-10-02Attachments: Fix attachments to temporary removed objects (#8989)SmallJoker6-31/+70
Does not clear the parent's attachment information when the child is deleted locally. Either it was removed permanently, or just temporary - we don't know, but it's up to the server to send a *detach from child" packet for the parent.
2019-10-01README: Add dependencies for Arch Linux (#8998)James Tobin1-0/+4
Added Arch Linux dependency list (including base-devel which covers many of them)
2019-10-01All Settings: Set min limit for crtitical settings (#9000)Wuzzy1-11/+11
2019-09-30Document node drop tool filtering by string matching as deprecated (#9009)Paramat1-2/+5
2019-09-29Textures: Load base pack only as last fallback (#8974)SmallJoker2-5/+14
2019-09-29label[]: Fix broken colors since 2c9edefSmallJoker1-5/+7
2019-09-29Move Quicktune code to util/ (#8871)ANAND9-9/+8
2019-09-29Fix error message caused by adding new parameter to background (#8922)rubenwardy2-3/+3
Adds background9[] element to keep backwards compatibility in formspec prepends.
2019-09-29Allow grep-ing for on_grant and on_revoke (#8958)DS1-0/+2
Just two code comments are added.
2019-09-27All settings: Fix missing flags checkbox caused by 'possible flags' order ↵Muhammad Rifqi Priyo Susanto2-4/+6
(#8997) Previously, the 'rivers' checkbox was missing for mgcarpathian, caused by the 'possible flags' order: 'caverns,nocaverns,rivers,norivers'. Also reorder mgcarpathian 'possible flags', but only for consistency.
2019-09-26Simple shader fixes. (#8991)lhofhansl3-1/+34
1. Pass current camera offset to shader, so shader have access to the global coordinates 2. Pass animation timer to fragment shader. C++ code is already there, just wasn't declared in the shader 3. Delay animation timer wrap-around (from 100s to about 16 minutes)
2019-09-26Automatically enable depends of mods when enabling the mods in the world ↵HybridDog1-15/+93
config menu (#3473)
2019-09-24Fix some reference counters (memleak) (#8981)SmallJoker12-37/+30
Fix some reference counters (memleak) Map::dispatchEvent: Allocation safety using references
2019-09-23Fix broken buildsfan51-2/+2
The variable name changed but this didn't cause merge conflicts, so it wasn't caught before.
2019-09-22Rename "private messages" to "direct messages" (#8971)Hugo Locurcio1-3/+3
These messages can be read by server administrators, which makes them not actually private.
2019-09-22Move the code for meta formspec into bool Game::nodePlacement(const ↵DS-Minetest1-37/+39
ItemDefinition &selected_def,
2019-09-22Punchwear (improved) (#8959)sfan510-31/+73
2019-09-21Fix AreaStore's IDs persistence (#8888)SmallJoker6-42/+90
Improve documentation Read old formats Fix free ID function. Return first gap in map
2019-09-21Wieldhand: Specify which ItemStack to use (#8961)SmallJoker7-41/+37
Makes 'get_wield_item' to return the "main" ItemStack
2019-09-19Add support for per-player FOV overrides and multipliersAnand S13-62/+168
2019-09-19Remove incorrect MutexAutoLocksfan51-5/+1
The line declared a variable "m_con" instead of locking m_con. getClient() doesn't need this anyway, so remove it.
2019-09-19Trigger on_place in many situations even if prediction failedDS-Minetest1-130/+133
2019-09-19Also print help commands to chat for server terminal (#8869)Tim Myers2-3/+18
2019-09-19Fix misuse of AsyncTask (#8799)Linjie Pan1-1/+9
2019-09-18Settings: Prevent mutex deadlock in remove() (#7803)SmallJoker1-1/+4
2019-09-18Inventory: Properly revert client predictions (#8945)SmallJoker3-11/+25
Caused by incremental inventory sending Previously everything was overwritten by serializing the entire inventory
2019-09-17Improve undersampling settingsHugo Locurcio2-7/+8
The setting now accepts values between 1 and 8 in the Advanced Settings menu. Values 0 and 1 now behave the same way (setting it to 1 won't disable MSAA anymore), so there's no need to expose 0 as a value. This closes #8939.
2019-09-17Inventory: Undo prediction on dropSmallJoker2-6/+7
2019-09-15Fix the bgcolor formspec element (#8716)DS2-11/+14
2019-09-15Fix formspec version backup in prepends losing datarubenwardy1-1/+1
2019-09-14Dungeons: Clean up parameters, improve structure variety (#8918)Paramat2-11/+16
While preserving the general character of dungeon structure. Slightly increase the range of standard room horizontal size, while preserving the average horizontal size. Return to classic maximum large room size of 16x16x16. Make 1 in 4 dungeons have a 1 in 8 chance for each room being 'large', making multiple large rooms possible for the first time. Make 1 in 8 dungeons allow diagonal corridors, to make these a little more common. Make corridor width vary from 1 to 2, but forced to 2 if diagonal corridors are allowed, to make them passable. Add some comments.
2019-09-14Built-in formspecs: Force version 1SmallJoker2-3/+2
2019-09-14client.h: Add missing const'sANAND1-3/+3
2019-09-14LocalPlayer: Fix code-styleANAND2-205/+181
2019-09-14client.cpp: Fix code-style in Client::sendPlayerPosANAND1-21/+20
2019-09-14Fix LocalPlayer::isDead always returning false if player is immortalANAND2-1/+6
2019-09-14Send ActiveObjects once right after Init2ANAND6-119/+141
2019-09-14Formspecs: Introduce formspec_version to modsSmallJoker11-10/+54
2019-09-14CSM: Fix itemstack:get_meta() 'metadata' indexing errorSmallJoker2-0/+3
2019-09-14Load CSM environment after the restrictions are knownSmallJoker10-55/+64
Safety-guards for CSM callbacks to abort on a bad implementation Only run callbacks when the mods are loaded (and with it: builtin) Duplication checks inside constructors
2019-09-09InventoryManager: Fix virtual function overload warningSmallJoker1-1/+1
2019-09-09Send cumulated inventory changes only each step (#8856)SmallJoker5-27/+35
Applies to player and detached inventories
2019-09-09Update minetest.conf.exampleupdatepo.sh1-36/+173
2019-09-09Update translation stringsupdatepo.sh46-30678/+37890