Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Actor.cpp
  • Loading branch information
VodoXleb committed Apr 17, 2025
commit 26e75b59bc031e1a0e8a7fdcb662f984b8115111
2 changes: 1 addition & 1 deletion src/xrGame/Actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ void set_box_y_offset(LPCSTR section, CPHMovementControl& mc, u32 box_num, float
string64 buff, buff1;
strconcat(sizeof(buff), buff, "ph_box", itoa(box_num, buff1, 10), "_center");
vBOX_center = pSettings->r_fvector3(section, buff);
vBOX_center.y = offset
vBOX_center.y = offset;
strconcat(sizeof(buff), buff, "ph_box", itoa(box_num, buff1, 10), "_size");
vBOX_size = pSettings->r_fvector3(section, buff);
vBOX_size.y += (cammera_into_collision_shift / 2.f) + offset;
Expand Down