-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Computercraft / RS Bridge - isFluidCraftable
, isFluidCrafting
, getFluid
#83
Comments
isFluidCraftable
, isFluidCrafting
, rs.getFluid
isFluidCraftable
, isFluidCrafting
, getFluid
They should exists in latest 1.19 & 1.20 |
Let me check if I'm up to date here... This is the latest version. |
I couldn't find them on the WIKI page, and they don't exist in-game. |
But they are in the code and commited three months ago. The wiki did not update for a long time yeah, but they should exists in game |
Well, I checked in a live Lua prompt, and couldn't find them. |
You linked to I'm specifically looking for the following functions: |
the other two is a problem, maybe they'll be there in the next release |
Are you sure? That sounds more like moving fluids which is not what I'm looking for. |
Ok, so there is |
The only problem with Ideally I'd just OR |
So it just an alternative solution, until the methods you want is added |
Problem, this function returns Also unsure if it reports if the fluid is already being crafted. That's another issue, is that my program needs to know if a fluid is already being crafted, otherwise you will end up with hundreds of requests for the same fluid. |
Describe your idea
I recently noticed that the RS bridge is missing certain functions for fluid. With items, we have
getItem()
,isItemCraftable()
, andisItemCrafting()
for example, however there are no fluid variants of these functions for fluid.I want to see fluid variants of these functions such as
getFluid()
,isFluidCraftable()
andisFluidCrafting()
.Describe alternatives you've considered if any
In theory I might be able to look through the fluid table or something to figure out if a pattern exists for an item or not, but then I'd have to add extra code that isn't needed for items. Implementing fluid support into my program would be much simpler if I could just use fluid variants of the functions I'm already using for items.
However, this method won't work if there is no way to detect if a fluid is already being crafted. This would result in hundreds of requests for the same fluid.
Additional context
Advanced Peripherals (
v0.7.39r
)Computercraft: Tweaked (
v1.110.2
)Forge (
v47.2.21
)Linked Issues
No response
The text was updated successfully, but these errors were encountered: