mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Minor PCAP commenting fix * Remove Duplicated Data from Spell Table * Update MySqlInstall.bat * Update Recipe Mods table column Unknown1 to Source * Update SpellProperties.cs * Add spell-export * cleanup * Update code * delete spell-export * remove data that was redunant from dat * Update CreateList and Generator labels * Change Emote.Display to Bool * Change Emote.Display to Bool * Fix script * update changelog * Add some null checks * More null check * syntax error * cleanup * more cleanup * Create db-pr-override.txt
17 lines
437 B
C#
17 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.World
|
|
{
|
|
public partial class RecipeModsString
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint RecipeModId { get; set; }
|
|
public int Stat { get; set; }
|
|
public string Value { get; set; }
|
|
public int Enum { get; set; }
|
|
public int Source { get; set; }
|
|
|
|
public RecipeMod RecipeMod { get; set; }
|
|
}
|
|
}
|