File Details
laser_utils-1.21.1-5.0.0
- R
- Jan 23, 2025
- 157.61 KB
- 18
- 1.21.1
- Forge
File Name
laser_utils-5.0.0.jar
Supported Versions
- 1.21.1
Curse Maven Snippet
Version 5.0.0
- Fixed duration abilities throwing exceptions when duration is over
- RayCast fixes:
- Getting the BlockPos in the RayCast has been replaced with getting a Vec3 that contains exact coordinates, properly depicting the current position in a RayCast
- The RayCast class has been replaced with three different classes:
- AbstractRayCast: The root class of all RayCast classes
- ClientRayCast: A client-side version of the RayCast that takes in a ClientLevel
- ServerRayCast: A server-side version of the RayCast that takes in a ServerLevel (very similar to the pre-existing RayCast class)
- All subclasses must define the AbstractRayCast#displayparticles method for how to display particles at each step of the RayCast.