Skip to content

Commit

Permalink
Should fix issue #3
Browse files Browse the repository at this point in the history
  • Loading branch information
GAMMACASE committed Feb 2, 2020
1 parent 62770c8 commit 7548a2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/momsurffix/gametrace.sp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ methodmap Ray_t < AllocatableBase
property Address m_pWorldAxisTransform
{
public get() { return view_as<Address>(LoadFromAddress(this.Address + offsets.rtoffsets.m_pWorldAxisTransform, NumberType_Int32)); }
public set(Address _worldaxistransform) { StoreToAddress(this.Address + offsets.rtoffsets.m_pWorldAxisTransform, view_as<int>(_worldaxistransform), NumberType_Int8); }
public set(Address _worldaxistransform) { StoreToAddress(this.Address + offsets.rtoffsets.m_pWorldAxisTransform, view_as<int>(_worldaxistransform), NumberType_Int32); }
}

property bool m_IsRay
Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/momsurffix2.sp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public Plugin myinfo = {
name = "Momentum surf fix \'2",
author = "GAMMA CASE",
description = "Ported surf fix from momentum mod.",
version = "1.1.1",
version = "1.1.2",
url = "http://steamcommunity.com/id/_GAMMACASE_/"
};

Expand Down

0 comments on commit 7548a2e

Please sign in to comment.