diff options
author | madmaxoft <github@xoft.cz> | 2014-03-30 19:17:33 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-30 19:17:33 +0200 |
commit | 1bda9b042403bbc20c564a582435a083fc4dcc84 (patch) | |
tree | 8210ebddd8925889c31d3b4fb77e813b3aea6ec1 /MCServer | |
parent | APIDump: Added article: Setting up ZeroBrane Studio. (diff) | |
parent | Added all current NetherFort prefabs. (diff) | |
download | cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.tar cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.tar.gz cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.tar.bz2 cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.tar.lz cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.tar.xz cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.tar.zst cuberite-1bda9b042403bbc20c564a582435a083fc4dcc84.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 83d544173..eceb19bd7 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -258,12 +258,11 @@ g_APIDesc = </ol> </p> - <p> - Special strategies: - </p> + <h3>Special strategies</h3> + <p>For each strategy, evaluate the table rows from top downwards, the first match wins.</p> <p> - <strong>msLake</strong> (evaluate top-down, first match wins): + <strong>msLake</strong> - used for merging areas with lava and water lakes, in the appropriate generator. </p> <table><tbody><tr> <th colspan="2"> area block </th><th> </th><th> Notes </th> @@ -293,6 +292,23 @@ g_APIDesc = <td> A </td><td> * </td><td> A </td><td> Everything else is left as it is </td> </tr> </tbody></table> + + + <p> + <strong>msSpongePrint</strong> - used for most prefab-generators to merge the prefabs. Similar to + msImprint, but uses the sponge block as the NOP block instead, so that the prefabs may carve out air + pockets, too. + </p> + <table><tbody><tr> + <th colspan="2"> area block </th><th> </th><th> Notes </th> + </tr><tr> + <th> this </th><th> Src </th><th> result </th><th> </th> + </tr><tr> + <td> A </td><td> sponge </td><td> A </td><td> Sponge is the NOP block </td> + </tr><tr> + <td> * </td><td> B </td><td> B </td><td> Everything else overwrites anything </td> + </tr> + </tbody></table> ]], }, -- Merge strategies }, -- AdditionalInfo |