This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp b/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp | |
index 3aa557b..2baf2d2 100644 | |
--- a/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp | |
+++ b/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp | |
@@ -88,9 +88,6 @@ static unsigned s_nextLookupCancelId = 1; | |
//=========================================================================== | |
static void LookupProcess (Lookup * lookup, unsigned error) { | |
- unsigned count = 0; | |
- plNetAddress* addrs = nil; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if test "x$1" == x -o "x$2" == x; then | |
echo "Usage: $0 <original CWE-ou repo> <original H-uru/Plasma repo>" | |
exit 1 | |
fi | |
if test -e old-hg -o -e uncorrupt-git -o -e uncorrupt-hg -o -e filemap1 -o -e filemap2 -o -e filtered-hg -o -e filtered-git; then | |
echo "Output files/folders exist." | |
read -p "OK to delete? (y/n) " REPLY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# basic NSIS bookkeeping. Nothing special | |
OutFile gehn_shard.exe | |
RequestExecutionLevel admin | |
Name "Gehn Shard" | |
Var CYAN_URULIVE_DIR | |
Var INSTALL_TO_URU | |
Function .onInit | |
StrCpy $INSTDIR "$PROGRAMFILES\Gehn Shard" | |
FunctionEnd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PyObject* pyVault::GetAllOnlinePlayers() | |
{ | |
VaultPlayerInfoNode *playerNode; | |
PyObject *playerList = PyList_New(0); | |
playerNode->SetOnline(1); | |
ARRAY(unsigned) nodeIds; | |
VaultFindNodesAndWait(playerNode, &nodeIds); //<- here is the problem | |
if (nodeIds.Count()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# PRP_as_Text is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# PRP_as_Text is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |