-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add check_for_pole
to some poles
#117
base: master
Are you sure you want to change the base?
Conversation
This enables signs from the street_signs mod to use this mod's poles as a pole to correctly attach to.
streets_poles/init.lua
Outdated
@@ -11,7 +11,7 @@ minetest.register_node(":streets:bigpole", { | |||
drawtype = "nodebox", | |||
tiles = { "streets_pole.png" }, | |||
sunlight_propagates = true, | |||
groups = { cracky = 1, level = 2, bigpole = 1, not_blocking_trains = 1}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know what it's there for, I didn't add it for any reason.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is here for advtrains. If a block is registered with this group, trains will not be blocked even if this block is in its path. This is useful as poles are not full blocks, hence not visually blocking trains but technically would.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, it got added back.
Co-authored-by: SmallJoker <[email protected]>
I am untrained in version numbers, an explanation to why it goes from 2.0.1 to 2.1.0 would be nice
@sonicSMASH There a few nodes that still have the |
This enables signs from the street_signs mod to use this mod's poles as a pole to correctly attach to.