7 Commits

Author SHA1 Message Date
88e78d678d rename workshop item 2022-09-13 05:05:45 +03:00
efd5c3d49f update build tools 2022-09-13 05:03:25 +03:00
f335c3932d update build tools 2022-09-02 16:18:19 +03:00
fc87924a4d fix destroy player repinfo 2022-09-02 16:17:55 +03:00
bf06206445 fix false "error": "Cant destroy RepInfo" 2022-08-30 09:56:09 +03:00
9cbe05edfe Merge branch 'master' of https://github.com/GenZmeY/KF2-ZedSpawner 2022-08-30 08:40:07 +03:00
47e03c9218 Update description.txt 2022-08-22 18:02:28 +03:00
7 changed files with 19 additions and 11 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.psd
/ignore

View File

@ -87,7 +87,7 @@ Version=0
Then start the server and check the file again - config content should be generated.
📌 If the spawner's behavior differs from what you expect, check the server logs first. ZedSpawner writes in the logs everything he does (and describes why), most likely you will find an explanation of what is happening there. If not, feel free to report bugs :)
📌 If the spawner's behavior differs from what you expect, check the server logs first. ZedSpawner writes in the logs everything it does (and describes why), most likely you will find an explanation of what is happening there. If not, feel free to report bugs :)
[h1]Sources[/h1]
[url=https://github.com/GenZmeY/KF2-ZedSpawner]https://github.com/GenZmeY/KF2-ZedSpawner[/url] (GNU GPLv3)

View File

@ -777,10 +777,7 @@ public function NotifyLogout(Controller C)
{
`Log_Trace();
if (!DestroyRepInfo(C))
{
`Log_Error("Can't destroy RepInfo of:" @ C);
}
DestroyRepInfo(C);
}
public function bool CreateRepInfo(Controller C)
@ -818,8 +815,8 @@ public function bool DestroyRepInfo(Controller C)
{
if (RepInfo.Owner == C)
{
RepInfo.SafeDestroy();
RepInfos.RemoveItem(RepInfo);
RepInfo.SafeDestroy();
return true;
}
}
@ -827,7 +824,7 @@ public function bool DestroyRepInfo(Controller C)
return false;
}
DefaultProperties
defaultproperties
{
}

View File

@ -50,7 +50,7 @@ public function NotifyLogout(Controller C)
Super.NotifyLogout(C);
}
DefaultProperties
defaultproperties
{
}

View File

@ -11,6 +11,15 @@ StripSource="True"
PackageBuildOrder="ZedSpawner"
### Brew parameters ###
# Packages you want to brew using @peelz's patched KFEditor.
# Useful for cases where regular brew doesn't put *.upk inside the package.
# Specify them with a space as a separator,
# The order doesn't matter
PackagePeelzBrew=""
### Steam Workshop upload parameters ###
# Mutators that will be uploaded to the workshop

2
tools

Submodule tools updated: 2f173aad7a...88b35bd7eb