mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 03:55:05 +01:00
Merge pull request #13806 from DaveKorhal/FixWestShots
Fixes drift on projectiles firing west
This commit is contained in:
@@ -247,8 +247,8 @@
|
||||
M.Turn(Angle)
|
||||
transform = M
|
||||
|
||||
var/Pixel_x = round(sin(Angle) + 16 * sin(Angle) * 2)
|
||||
var/Pixel_y = round(cos(Angle) + 16 * cos(Angle) * 2)
|
||||
var/Pixel_x = round(sin(Angle) + 16 * sin(Angle) * 2, 1)
|
||||
var/Pixel_y = round(cos(Angle) + 16 * cos(Angle) * 2, 1)
|
||||
var/pixel_x_offset = pixel_x + Pixel_x
|
||||
var/pixel_y_offset = pixel_y + Pixel_y
|
||||
var/new_x = x
|
||||
|
||||
Reference in New Issue
Block a user