Fixes (#73)
* - fix: Genitals sprite shit and meow for tajaran * - add: fart sound if kicked from server * - tweak: vulpies and tajaran now for donaters!!! * - fix: Fart on exit * - add: roleplay think * - fix: database shit and loc * - add: ears for slime * - fix: LOC interaction fix * - add: height setting * - fix: height for felinids * - fix: nigga fix * - fix: no bitches on captain * - fix: interaction panel animation shit
This commit is contained in:
19
Content.Shared/_Amour/LoggerExtension/LoggerExt.cs
Normal file
19
Content.Shared/_Amour/LoggerExtension/LoggerExt.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace Content.Shared._Amour.LoggerExtension;
|
||||
|
||||
public static class LoggerExt
|
||||
{
|
||||
public static void Trace(this ISawmill logger, params (string,object)[] objects)
|
||||
{
|
||||
if(objects.Length == 0)
|
||||
return;
|
||||
|
||||
var text = "TRC: ";
|
||||
|
||||
foreach (var (name,obj) in objects)
|
||||
{
|
||||
text += $"{name}: {obj} ";
|
||||
}
|
||||
|
||||
logger.Debug(text);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user