Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Psykotikism authored Jun 21, 2018
1 parent aa12176 commit 83e7c6e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 8.4 (June 20, 2018)

Bug fixes:

1. Fixed the infected thrower Tanks not throwing special infected directly from their rocks.

## Version 8.3 (June 20, 2018)

Bug fixes:
Expand Down
Binary file modified addons/sourcemod/plugins/super_tanks++.smx
Binary file not shown.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/include/super_tanks++.inc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define ST_NAME "Super Tanks++"
#define ST_AUTHOR "Psyk0tik (Crasher_3637)"
#define ST_DESCRIPTION "Super Tanks++ makes fighting Tanks great again!"
#define ST_VERSION "8.3"
#define ST_VERSION "8.4"
#define ST_URL "https://forums.alliedmods.net/showthread.php?t=302140"
#define ST_LOCK "=="
#define ST_UNLOCK "!="
Expand Down
14 changes: 7 additions & 7 deletions addons/sourcemod/scripting/super_tanks++.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2663,7 +2663,7 @@ public Action tTimerBoomerThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Boomer");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 2, true);
vSpawnInfected(iInfected, 2, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down Expand Up @@ -2695,7 +2695,7 @@ public Action tTimerChargerThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Charger");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 6, true);
vSpawnInfected(iInfected, 6, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down Expand Up @@ -2727,7 +2727,7 @@ public Action tTimerCloneThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Clone");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 8, true);
vSpawnInfected(iInfected, 8, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down Expand Up @@ -2989,7 +2989,7 @@ public Action tTimerHunterThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Hunter");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 3, true);
vSpawnInfected(iInfected, 3, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down Expand Up @@ -3079,7 +3079,7 @@ public Action tTimerJockeyThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Jockey");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 5, true);
vSpawnInfected(iInfected, 5, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down Expand Up @@ -3366,7 +3366,7 @@ public Action tTimerSmokerThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Smoker");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 1, true);
vSpawnInfected(iInfected, 1, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down Expand Up @@ -3407,7 +3407,7 @@ public Action tTimerSpitterThrow(Handle timer, any client)
int iInfected = CreateFakeClient("Spitter");
if (iInfected > 0)
{
vSpawnInfected(iInfected, 4, true);
vSpawnInfected(iInfected, 4, false);
float flPos[3];
GetEntPropVector(iEntity, Prop_Send, "m_vecOrigin", flPos);
AcceptEntityInput(iEntity, "Kill");
Expand Down

0 comments on commit 83e7c6e

Please sign in to comment.