Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-05-04 | Improve entity position updates (#4701) | Tiger Wang | 1 | -4/+1 | |
* Make puking pickups fly nicer * Improve entity position updates * Move determination of whether a delta is too big for a packet into the protocol handlers + Less jittery movement + Generalise CollectEntity to take any entity | |||||
2020-04-16 | Using Super. | Mattes D | 1 | -16/+16 | |
2020-03-28 | Toss all items from enchantment table (#4569) | Mat | 1 | -2/+2 | |
2018-08-29 | Force all headers other than "Globals.h" to be included with relative paths (#4269) | peterbell10 | 1 | -1/+1 | |
Closes #4236 CMake now creates a header file in the build directory under the path "include/Globals.h" which just includes "src/Globals.h" with an absolute path. Then instead of adding "src/" to the include directories, it adds "include/". #include "Globals.h" still works by including the build generated file and any other src-relative path will not work. | |||||
2018-08-17 | Handle the lapis slot separately (#4286) | Nate | 1 | -0/+36 | |
This is my attempt to fix #4112. The root cause of the issue was that the lapis slot was treated exactly the same as the enchanting slot, so it on the server side it would only ever slot one item. My fix is to check if its the second slot in the window, then check if it's lapis (it would slot whatever). If it is lapis I call the base click handler. | |||||
2018-08-02 | Experience orb (#4259) | changyong guo | 1 | -1/+1 | |
* Replace cWorld::FindClosesPlayer with cWorld::DoWithClosestPlayer * Implement experience reward splitting into the orb sizes used in vanilla * Modified speed calculation in cExpOrb::Tick to make the orbs fly towards the player Fixes #4216 | |||||
2018-07-27 | cWorld: Manually bind deprecated broadcast functions (#4265) | peterbell10 | 1 | -3/+4 | |
Ref: https://github.com/cuberite/cuberite/pull/4264#discussion_r204769193 | |||||
2018-07-26 | CheckBasicStyle: Check number of empty lines between functions (#4267) | peterbell10 | 1 | -1/+6 | |
Add check for number of empty lines between functions and fix the corresponding failures | |||||
2018-05-02 | Prefer static_cast to reinterpret_cast (#4223) | peterbell10 | 1 | -3/+3 | |
* Change reinterpret_cast -> static_cast wherever possible * Remove more unnecessary `const_cast`s. reinterpret_casts should be avoided for the same reason as c-style casts - they don't do any type-checking. reinterpret_cast was mainly being used for down-casting in inheritance hierarchies but static_cast works just as well while also making sure that there is actually an inheritance relationship there. | |||||
2018-04-11 | Smelting Gives Experience (#4094) | Alex Sweet | 1 | -1/+6 | |
* Smelting Exp Smelting now gives experience * Furnace.txt update Exp rewards are entered in furnace.txt, Reward calculation is now done is the furnaceentity class * furnace.txt update Changed alignment tabs to spaces Included documentation of exp in recipe * Updated StringToFloat changed strtod to strtof * Explicit Float to Int * Reworked Smelting Rewards * No C casts -Adds new function to the api -Sets reward counter to 0 in furnace constructor * Style and exp lock removed -Fixed style mistakes accoring to PR notes -XP isn't locked to a single player anymore * No Smelter API -Removed SetLastSmelter and GetLastSmelter -Fixed comments -Fixed log reward amounts | |||||
2017-10-21 | Implement horse inventory (#4053) | peterbell10 | 1 | -0/+119 | |
* Implement horse inventory * Fix sign conversions * Add API doc for ItemCategory::IsHorseArmor * Improve HandleOpenHorseInventory comment and style fixes. | |||||
2017-09-14 | Fix switch warnings (#4013) | peterbell10 | 1 | -2/+5 | |
* Fix switch warnings * Fix a variety of -Wswitch and -Wswitch-enum warnings * Remove unneeded -Wno-error flags * Reorganise some eMonsterType switches * Alpha sort eMonsterType cases in WriteMobMetadata and in cNBTChunkSerializer::AddMonsterEntity * List all mob types in protocol 1.12 and NBTChunkSerializer * cStructGenTrees::GetNumTrees: remove switch default * cWSSAnvil::LoadOldMinecartFromNBT: Log unhandled minecart type | |||||
2017-08-02 | Removed double includes (#3885) | Lukas Pioch | 1 | -1/+0 | |
2017-07-28 | Added anvil enchantment handling. (#3857) | Lane Kolbly | 1 | -4/+5 | |
+ Added anvil enchantment handling. | |||||
2017-06-13 | FastRandom rewrite (#3754) | peterbell10 | 1 | -4/+3 | |
2017-05-08 | Corrected brewingstand and added support for fuel | Lukas Pioch | 1 | -71/+76 | |
2017-02-05 | Fixed bindings for cBlockArea:Read and Write. (#3568) | Mattes D | 1 | -2/+2 | |
The original bindings accepted nil as the World param, causing a crash. | |||||
2016-11-18 | Removed ClientHandle.h dependencies from common headers. | Mattes D | 1 | -0/+1 | |
2016-10-12 | Spectators added (#2852) | bibo38 | 1 | -0/+8 | |
2016-02-05 | Bulk clearing of whitespace | LogicParrot | 1 | -28/+28 | |
2015-12-17 | Moved variables into scope, removed unused variables and fixed variables | Lukas Pioch | 1 | -2/+1 | |
2015-11-24 | Add enum for Sound and Particle Effects | Dave Tucker | 1 | -3/+4 | |
Fixes #2603 Signed-off-by: Dave Tucker <dave@dtucker.co.uk> | |||||
2015-11-03 | Implemented brewing | Lukas Pioch | 1 | -0/+238 | |
2015-07-29 | Silenced and fixed many warning messages across multiple files. | Samuel Barney | 1 | -28/+28 | |
2015-05-24 | Fixes #2041 | Tiger Wang | 1 | -3/+3 | |
2015-05-18 | Fixes #2003 | Tiger Wang | 1 | -1/+1 | |
2014-12-13 | Implemented vanilla-like shift click. | Howaner | 1 | -55/+68 | |
This fixes many visual bugs. | |||||
2014-12-13 | Own classes for all windows. | Howaner | 1 | -3/+4 | |
2014-12-05 | Fixed reported parentheses around comparisons. | Mattes D | 1 | -1/+1 | |
2014-10-23 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -20/+20 | |
2014-10-21 | Replace &*[0] accesses with .data() | Tiger Wang | 1 | -2/+2 | |
2014-10-20 | En masse NULL -> nullptr replace | Tiger Wang | 1 | -20/+20 | |
2014-10-15 | Functions in cPluginManager get references instead of pointers. | Mattes D | 1 | -2/+2 | |
2014-09-13 | Implemented Chest Minecarts | Tiger Wang | 1 | -0/+35 | |
2014-08-28 | Added comments. | Hownaer | 1 | -1/+3 | |
2014-08-28 | Fixed crashes and use std::swap. | Hownaer | 1 | -6/+3 | |
2014-08-28 | Enchanting table improvements. | Hownaer | 1 | -115/+77 | |
2014-07-30 | Added beacon. | Howaner | 1 | -0/+195 | |
2014-07-26 | Change comment. | Howaner | 1 | -1/+1 | |
2014-07-20 | Add armor items directly to the armor slots. | Howaner | 1 | -2/+2 | |
2014-07-18 | Moved comment. | Howaner | 1 | -1/+1 | |
2014-07-18 | Fixed the armor slot in creative mode. Also removed that armor get directly to the armor slot. It is extremely buggy and unnecessary. | Howaner | 1 | -0/+13 | |
2014-07-17 | Basic style fixes. | madmaxoft | 1 | -3/+3 | |
2014-07-17 | Normalized comments. | madmaxoft | 1 | -16/+16 | |
This was mostly done automatically and then visually inspected for obvious errors. All //-style comments should have a 2-space separation from the code, and 1 space after the comment sign. | |||||
2014-07-09 | Removed unused include line. | Howaner | 1 | -1/+0 | |
2014-07-09 | Added inventory number click. | Howaner | 1 | -0/+38 | |
2014-07-06 | Fixed crafting grid updating. | Mattes D | 1 | -2/+20 | |
Fixes #1152. | |||||
2014-07-06 | Added drop window action. | Howaner | 1 | -10/+100 | |
2014-07-05 | Add middle click. | Howaner | 1 | -19/+83 | |
2014-06-29 | Removed bad comment | Tiger Wang | 1 | -1/+0 | |
2014-06-29 | Properly implemented enderchests | Tiger Wang | 1 | -2/+2 | |
2014-06-04 | derp | worktycho | 1 | -1/+1 | |
2014-06-04 | Make sure m_StackSizeToBeUsedInRepair Always has a valid value | worktycho | 1 | -1/+3 | |
2014-06-01 | Players can't set items in the result slot, when they shift a item. | Howaner | 1 | -0/+38 | |
2014-06-01 | Add HandleSmeltItem() call for achievements. | Howaner | 1 | -7/+11 | |
2014-06-01 | Missing return; | Howaner | 1 | -0/+1 | |
2014-05-31 | Set DraggingItem to Slot directly. | Howaner | 1 | -1/+1 | |
2014-05-31 | Fix DBL bug. | Howaner | 1 | -5/+4 | |
2014-05-31 | Change "Slot.IsEmpty()" to "Slot.m_ItemCount <= 0" | Howaner | 1 | -1/+1 | |
2014-05-30 | Fix the furnace result slot. | Howaner | 1 | -2/+90 | |
2014-05-19 | Fixed some warnings in Server.cpp, and in UI/ | Julian Laubstein | 1 | -1/+2 | |
2014-05-16 | Fixed anvil exp removing | tonibm19 | 1 | -1/+1 | |
2014-05-12 | cEntity::Killed(cEntity *) Handler; Achievement triggers; cPlayer::AwardAchievement() | andrew | 1 | -1/+41 | |
2014-05-09 | Fixed MSVC 64-bit build warnings. | Mattes D | 1 | -1/+1 | |
2014-05-08 | Fixed MSVC 64-bit build warnings. | Mattes D | 1 | -1/+1 | |
2014-05-07 | Change m_RepairCost to int. | Howaner | 1 | -9/+3 | |
2014-05-07 | Add repair cost to cItem, add custom name to NBTChunkSerializer and fix anvil bugs. | Howaner | 1 | -24/+36 | |
2014-05-06 | Rename CanRepairWithItem to CanRepairWithRawMaterial and rename Size() to Count() | Howaner | 1 | -6/+5 | |
2014-05-05 | Fix SetRepairedItemName() in SlotArea.cpp | Howaner | 1 | -1/+1 | |
2014-05-05 | Add comments to CanTakeResultItem() | Howaner | 1 | -5/+5 | |
2014-05-05 | Add anvil shift click. | Howaner | 1 | -4/+83 | |
2014-05-05 | Add clicks, exp subtraction, item check, ... | Howaner | 1 | -9/+155 | |
2014-05-05 | Add MC|ItemName plugin message. | Howaner | 1 | -5/+5 | |
2014-05-05 | Add anvil window and slot area. | Howaner | 1 | -0/+173 | |
2014-04-24 | Add armor to switch() in ItemHandler.cpp | Howaner | 1 | -1/+1 | |
2014-04-24 | Fix armor in survival mode. | Howaner | 1 | -0/+74 | |
2014-04-20 | Fixed MSVC compilation. | madmaxoft | 1 | -1/+1 | |
2014-04-19 | Fixed Code | daniel0916 | 1 | -2/+3 | |
2014-04-18 | Did some static analysis, fixed some bugs and optimized a lot of code | jfhumann | 1 | -5/+6 | |
2014-04-17 | Modified many things | daniel0916 | 1 | -16/+50 | |
2014-04-16 | Fixed double enchanting items | daniel0916 | 1 | -2/+2 | |
2014-04-15 | Added Book Enchanting | daniel0916 | 1 | -1/+1 | |
2014-04-15 | Add more checks to cSlotAreaEnchanting | Howaner | 1 | -88/+198 | |
2014-04-14 | Added ItemPlaceCount in SlotArea | daniel0916 | 1 | -0/+32 | |
Thanks to Howaner for helping | |||||
2014-04-14 | Blocked enchanting a item twice | daniel0916 | 1 | -6/+8 | |
2014-04-14 | Fixed Bookshelf Checking | daniel0916 | 1 | -8/+10 | |
Code by LO1ZB | |||||
2014-04-14 | Bug fixes | daniel0916 | 1 | -15/+17 | |
2014-04-13 | Fixed invisibility enchantments | daniel0916 | 1 | -0/+2 | |
2014-04-13 | Some Fixes | daniel0916 | 1 | -1/+1 | |
2014-04-12 | Fixed Bookshelves Checking (not completly) | daniel0916 | 1 | -7/+10 | |
2014-04-12 | Added complete Enchanting System | daniel0916 | 1 | -15/+34 | |
http://minecraft.gamepedia.com/Enchantment_mechanics | |||||
2014-04-07 | Added Enchantment-Slot-Level generating | daniel0916 | 1 | -9/+19 | |
2014-02-28 | Fixed multiple gcc warnings about unused params. | madmaxoft | 1 | -0/+30 | |
2014-01-24 | Some updates for enchanting | daniel0916 | 1 | -12/+12 | |
2014-01-20 | first changes for enchanting (not finished) | daniel0916 | 1 | -0/+86 | |
- added enchanting table block handler and added it to the blockhandler - added enchanting window - drop item in the slot 0 when the player close the window - added enchanting packet (1.7 only) - some more... | |||||
2014-01-17 | Removed internal cEntity::GetRot() usage. | madmaxoft | 1 | -1/+1 | |
2014-01-16 | Really did what xoft wanted | Tiger Wang | 1 | -5/+8 | |
2014-01-16 | Removed obsoleted functions | Tiger Wang | 1 | -3/+3 | |
2014-01-16 | Possibly did what xoft wanted | Tiger Wang | 1 | -10/+3 | |
2014-01-15 | Implemented custom names and lore | Tiger Wang | 1 | -0/+7 | |
+ Added custom names and lore + Added saving and loading + Added writing and parsing of NBT | |||||
2014-01-07 | More MSVC warning fixes. | madmaxoft | 1 | -2/+2 | |
2013-12-08 | Removed unused variable ResultSlot | Tycho Bickerstaff | 1 | -1/+0 | |
2013-12-09 | Fixed Warning Unhandeled enum values in switch as src/UI/SlotArea.cpp line 54 | worktycho | 1 | -1/+4 | |
2013-12-07 | Added basic ender chests | Tiger Wang | 1 | -0/+33 | |
Note that they just mirror chests now, so no per player inventory. | |||||
2013-11-24 | Moved source to src | Alexander Harkness | 1 | -0/+0 | |
2013-11-11 | Fixed dblclicking in crafting slot area. | madmaxoft | 1 | -0/+14 | |
Fixes #229. | |||||
2013-11-10 | Implemented inventory dblclick. | madmaxoft | 1 | -4/+72 | |
Implements #229. | |||||
2013-10-28 | Renamed cWindow constants to include the "wt" prefix. | madmaxoft | 1 | -1/+1 | |
2013-10-24 | Pickups now have collection delay when vomited | Tiger Wang | 1 | -1/+1 | |
Implements FS#394. | |||||
2013-09-09 | Added a few changes [SEE DESC] | Tiger Wang | 1 | -1/+1 | |
* Revised pickup comments * SlotArea pickup tossing now reflects Player.cpp * Removed unneeded ItemShears comment (was working already) * Sand and gravel pickups spawn with correct speed | |||||
2013-08-19 | Moved entities into the Entities subfolder. | madmaxoft | 1 | -1/+1 | |
2013-08-02 | Shift+clicking won't combine different item metas. | madmaxoft | 1 | -1/+1 | |
Fixes FS 424. | |||||
2013-07-29 | Changed everyting to Unix line endings. | Alexander Harkness | 1 | -815/+815 | |
2013-06-16 | Rewritten furnaces | madmaxoft@gmail.com | 1 | -41/+20 | |
Furnaces now smelt the correct number of items. Furnaces store their contents in a cItemGrid. Furnace window is updated with correct items and progressbars. Furnace recipes now use ticks instead of milliseconds. Furnaces save and load their state completely, not missing a smelt operation. Hoppers take items out of furnaces. Dropped the cSlotAreaDropSpenser class, replaced it with generic cSlotAreaItemGrid git-svn-id: http://mc-server.googlecode.com/svn/trunk@1601 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-06-13 | Added hopper entity, it can suck items out of chests, dispensers, droppers and other hopppers above it. | madmaxoft@gmail.com | 1 | -0/+20 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1587 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-06-02 | Shift + click doesn't "destroy" item enchantment | madmaxoft@gmail.com | 1 | -5/+6 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1540 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-30 | LuaWindow: Initial code, the window can be opened, but not much manipulated | madmaxoft@gmail.com | 1 | -0/+31 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1532 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-30 | Implemented left-click inventory painting | madmaxoft@gmail.com | 1 | -7/+7 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1529 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-28 | Moved BlockEntities to a separate folder | madmaxoft@gmail.com | 1 | -3/+3 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1527 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-26 | Implemented droppers | madmaxoft@gmail.com | 1 | -24/+8 | |
Added a common ancestor class "DropSpenser" that has the common code for dropper and dispenser and is Lua-accessible, too. The Debuggers plugin now triggers both droppers and dispensers when rclking them with a redstone torch. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1514 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-24 | Refactored cInventory to use cItemGrid for the actual Storage | madmaxoft@gmail.com | 1 | -1/+1 | |
This makes the API more orthogonal and is easier to use in the plugins. Also changes in the inventory are now propagated to the needed places (armor updates to BroadcastEntityEquipment etc.) even when the inventory is changed by a plugin. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1503 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-19 | Inventory code cleanup, players can now see each other's armor | madmaxoft@gmail.com | 1 | -2/+2 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1493 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-05-08 | Refactored window clicking code to use different click actions | madmaxoft@gmail.com | 1 | -68/+79 | |
First part of solving FS #371; should fix #370. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1459 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-04-10 | Dispensers rewritten to use ItemGrid | madmaxoft@gmail.com | 1 | -1/+1 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1383 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-04-10 | Added cItemGrid to represent an XY grid of items; converted chests to use cItemGrid. | madmaxoft@gmail.com | 1 | -3/+3 | |
http://forum.mc-server.org/showthread.php?tid=831 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1380 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-03-09 | Pickups are now being saved into Anvil. | madmaxoft@gmail.com | 1 | -1/+1 | |
Also changed cEntity rotation datatype to double git-svn-id: http://mc-server.googlecode.com/svn/trunk@1262 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-01-12 | Merged branch "branches/hooks" into "trunk". | madmaxoft@gmail.com | 1 | -10/+10 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1139 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2013-01-08 | Fixed rclk in doublechests | madmaxoft@gmail.com | 1 | -1/+48 | |
FS #284 git-svn-id: http://mc-server.googlecode.com/svn/trunk@1127 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-12-19 | Added dispensers (they can't dispense items yet) | luksor111@gmail.com | 1 | -0/+48 | |
Fixed crash when digging snow Moved BlockPlace hook check, so Core plugin will no longer block item usage Player chat messages are now visible in the console git-svn-id: http://mc-server.googlecode.com/svn/trunk@1081 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-10-24 | Fixed issues with pickups. | sebi.noreply@gmail.com | 1 | -1/+2 | |
* Now when picking up max. stack amount is checked. * Added cInventory::AddItemAnyAmount() which will not fail if it cannot add all items (it will just modify amount) * If there is no space in inventory and picking up stacked items, it will try to fill stacks already in inventory, partially picking up the item. * When closing inventory player will drop any items it's currently 'dragging' git-svn-id: http://mc-server.googlecode.com/svn/trunk@1008 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-29 | SlotArea: removed excessive logging | madmaxoft@gmail.com | 1 | -4/+0 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@904 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-26 | Fixed a bug in the inventory system where it would de-sync when dragging items with non-default metadata/health | faketruth | 1 | -1/+1 | |
Android: Updated VS2008 project to point to correct Android files Android: Updated makefiles to compile CryptoPP Android: Modified CryptoPP config.h and misc.cpp so it compiles for Android Android: Added pretty MCServer icons git-svn-id: http://mc-server.googlecode.com/svn/trunk@893 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-24 | Source files cleanup: The rest of the files renamed. | madmaxoft@gmail.com | 1 | -5/+5 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@887 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-23 | Source files cleanup: UI files renamed | madmaxoft@gmail.com | 1 | -1/+1 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@878 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-23 | Tweaked logging. | madmaxoft@gmail.com | 1 | -5/+5 | |
Less output for UI. More output for player pos confirming (FS #245) and for player spawning git-svn-id: http://mc-server.googlecode.com/svn/trunk@875 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-21 | Fixed a potential crash in shift-click (gcc warning) | madmaxoft@gmail.com | 1 | -1/+1 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@871 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-21 | Working shift-click support in crafting areas; window update working in 1.3.2 | madmaxoft@gmail.com | 1 | -5/+52 | |
git-svn-id: http://mc-server.googlecode.com/svn/trunk@869 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-20 | UI: Added shift-click support to most slot areas, except crafting. | madmaxoft@gmail.com | 1 | -25/+106 | |
Also fixed survival inventory's crafting grid not working. git-svn-id: http://mc-server.googlecode.com/svn/trunk@868 0a769ca7-a7f5-676a-18bf-c427514a06d6 | |||||
2012-09-20 | Refactored windows. | madmaxoft@gmail.com | 1 | -0/+569 | |
As described on the forum: http://forum.mc-server.org/showthread.php?tid=561 For now, only basic clicking works; shift-click not implemented yet. git-svn-id: http://mc-server.googlecode.com/svn/trunk@867 0a769ca7-a7f5-676a-18bf-c427514a06d6 |