Merge branch 'general-devel' into fix-1653
This commit is contained in:
commit
f3627bb45a
2 changed files with 4 additions and 1 deletions
|
|
@ -3,6 +3,7 @@
|
|||
This is the rolling changelog for TShock for Terraria. Use past tense when adding new entries; sign your name off when you add or change something. This should primarily be things like user changes, not necessarily codebase changes unless it's really relevant or large.
|
||||
|
||||
## Upcoming Changes
|
||||
* Added confused debuff to Bouncer for confusion applied from Brain of Confusion
|
||||
* API: Added return in OnNameCollision if hook has been handled. (@Patrikkk)
|
||||
* API: Added hooks for item, projectile and tile bans (@deadsurgeon42)
|
||||
* API: Changed `PlayerHooks` permission hook mechanisms to allow negation from hooks (@deadsurgeon42)
|
||||
|
|
|
|||
|
|
@ -1869,7 +1869,9 @@ namespace TShockAPI
|
|||
{ BuffID.DryadsWardDebuff, 120 },
|
||||
{ BuffID.Daybreak, 300 },
|
||||
{ BuffID.BetsysCurse, 600 },
|
||||
{ BuffID.Oiled, 540 }
|
||||
{ BuffID.Oiled, 540 },
|
||||
{ BuffID.Confused, 360 }, // Brain of Confusion Internal Item ID: 3223
|
||||
{ BuffID.Daybreak, 300 } // Solar Eruption Item ID: 3473, Daybreak Item ID: 3543
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue