diff --git a/README.html b/README.html deleted file mode 100644 index a20e8f5..0000000 --- a/README.html +++ /dev/null @@ -1,1143 +0,0 @@ -README

Universal Fluid API

-

This API adds support for fluid_buffers inside nodes. This means that nodes can contain fluid.

-

How to Use

-
    -
  1. Add the node to the fluid_container group.
  2. -
  3. Add the following to the node defintion: -
    fluid_buffers = {
    -    buffer_name = {
    -        capacity = 2000,
    -        accepts = {"default:water_source", "group:water_source"}, -- you can also set this to true to accept any fluid!
    -        drainable = true,
    -    },
    -}
    -
  4. -
  5. Set the appropriate metadata.
  6. -
- -

API

-

All numbers are in milli-buckets (1 bucket = 1000 mB).

- -

License

-

bucket

-

See bucket/license.txt

-

fluid_lib

-

See LICENSE

\ No newline at end of file diff --git a/README.md b/README.md index 804431e..ad1579d 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ This API adds support for `fluid_buffers` inside nodes. This means that nodes ca 2. Add the following to the node defintion: ``` fluid_buffers = { - buffer_name = { - capacity = 2000, - accepts = {"default:water_source", "group:water_source"}, -- you can also set this to true to accept any fluid! - drainable = true, - }, + buffer_name = { + capacity = 2000, + accepts = {"default:water_source", "group:water_source"}, -- you can also set this to true to accept any fluid! + drainable = true, + }, } ``` 3. Set the appropriate metadata. @@ -28,11 +28,11 @@ All numbers are in **milli-buckets** (1 bucket = 1000 mB). * Returns all the information about this buffer. ``` { - fluid = fluid source block, - amount = amount of fluid, - accepts = list of accepted fluids, - capacity = capacity of the buffer, - drainable = is this buffer drainable, + fluid = fluid source block, + amount = amount of fluid, + accepts = list of accepted fluids, + capacity = capacity of the buffer, + drainable = is this buffer drainable, } ```