mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-09 17:23:21 +00:00
Add SpawnDirectOnFailure flag
This commit is contained in:
parent
e4d3ae5640
commit
c249d63808
1 changed files with 3 additions and 2 deletions
|
@ -79,12 +79,13 @@ int lastCrescendoUser;
|
||||||
bool spIsActive;
|
bool spIsActive;
|
||||||
enum SpecialSpawnFlags {
|
enum SpecialSpawnFlags {
|
||||||
Special_Anywhere = 0,
|
Special_Anywhere = 0,
|
||||||
Special_OnTarget = 1
|
Special_OnTarget = 1,
|
||||||
|
Special_SpawnDirectOnFailure = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
enum SpecialInternalFlags {
|
enum SpecialInternalFlags {
|
||||||
SPI_KillOnSpawn = 1,
|
SPI_KillOnSpawn = 1,
|
||||||
SPI_AlwaysTarget = 2
|
SPI_AlwaysTarget = 2,
|
||||||
}
|
}
|
||||||
|
|
||||||
int healTargetPlayer;
|
int healTargetPlayer;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue