Skip to content

Commit

Permalink
block/froglight.go: Fix incorrect pillar_axis state name
Browse files Browse the repository at this point in the history
  • Loading branch information
TwistedAsylumMC committed Sep 2, 2024
1 parent d83eda4 commit e99ffb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/block/froglight.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (f Froglight) EncodeItem() (name string, meta int16) {

// EncodeBlock ...
func (f Froglight) EncodeBlock() (name string, properties map[string]any) {
return "minecraft:" + f.Type.String() + "_froglight", map[string]any{"axis": f.Axis.String()}
return "minecraft:" + f.Type.String() + "_froglight", map[string]any{"pillar_axis": f.Axis.String()}
}

// allFrogLight ...
Expand Down

0 comments on commit e99ffb8

Please sign in to comment.