Compare commits

...

2 Commits

3 changed files with 4 additions and 6 deletions

View File

@ -9,6 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
GameFiles\IW4x\userraw\scripts\_commands.gsc = GameFiles\IW4x\userraw\scripts\_commands.gsc GameFiles\IW4x\userraw\scripts\_commands.gsc = GameFiles\IW4x\userraw\scripts\_commands.gsc
GameFiles\IW4x\userraw\scripts\_customcallbacks.gsc = GameFiles\IW4x\userraw\scripts\_customcallbacks.gsc GameFiles\IW4x\userraw\scripts\_customcallbacks.gsc = GameFiles\IW4x\userraw\scripts\_customcallbacks.gsc
PostPublish.ps1 = PostPublish.ps1 PostPublish.ps1 = PostPublish.ps1
pre-release-pipeline.yml = pre-release-pipeline.yml
README.md = README.md README.md = README.md
RunPublishPre.cmd = RunPublishPre.cmd RunPublishPre.cmd = RunPublishPre.cmd
RunPublishRelease.cmd = RunPublishRelease.cmd RunPublishRelease.cmd = RunPublishRelease.cmd

View File

@ -773,6 +773,8 @@ namespace SharedLibraryCore
byte[] bytes = toTest.GetAddressBytes(); byte[] bytes = toTest.GetAddressBytes();
switch (bytes[0]) switch (bytes[0])
{ {
case 0:
return bytes[1] == 0 && bytes[2] == 0 && bytes[3] == 0;
case 10: case 10:
return true; return true;
case 172: case 172:

View File

@ -2,12 +2,7 @@ trigger:
batch: true batch: true
branches: branches:
include: include:
- releases/* - release/pre
- 2.4-pr
paths:
exclude:
- azure-pipelines.yml
- Master/*
pr: none pr: none