mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 13:15:53 +12:00
Add BBCODE to Horse Descriptions, Player Descriptions and Ranch Descriptions.
This commit is contained in:
parent
bdebe4d84a
commit
72bc81d900
14 changed files with 142 additions and 40 deletions
|
@ -192,8 +192,8 @@ namespace HISP.Game
|
|||
}
|
||||
set
|
||||
{
|
||||
title = value;
|
||||
Database.SetRanchTitle(Id, value);
|
||||
title = value.Trim();
|
||||
Database.SetRanchTitle(Id, title);
|
||||
}
|
||||
}
|
||||
public string Description
|
||||
|
@ -204,7 +204,7 @@ namespace HISP.Game
|
|||
}
|
||||
set
|
||||
{
|
||||
description = value;
|
||||
description = value.Trim();
|
||||
Database.SetRanchDescription(Id, value);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue