Files
mc/server/entity/effect/blindness.go
T

19 lines
311 B
Go
Raw Normal View History

2026-07-09 08:33:57 +08:00
package effect
import (
"image/color"
)
// Blindness is a lasting effect that greatly reduces the vision range of the
// entity affected.
var Blindness blindness
type blindness struct {
nopLasting
}
// RGBA ...
func (blindness) RGBA() color.RGBA {
return color.RGBA{R: 0x1f, G: 0x1f, B: 0x23, A: 0xff}
}