Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: int19h/WarBender
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.4
Choose a base ref
...
head repository: int19h/WarBender
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 6 commits
  • 8 files changed
  • 1 contributor

Commits on Nov 16, 2018

  1. Copy the full SHA
    5cd5b33 View commit details
  2. Copy the full SHA
    a6fbb7a View commit details

Commits on Nov 17, 2018

  1. Fix #7: Expose inner structure for map_track "flags"

    Add MapTrack.party_template_id, strength, and typed flags.
    int19h committed Nov 17, 2018
    Copy the full SHA
    7708989 View commit details

Commits on Nov 25, 2018

  1. Expose raw values on slots.

    int19h committed Nov 25, 2018
    Copy the full SHA
    5929192 View commit details

Commits on Dec 1, 2018

  1. Copy the full SHA
    3ed5a46 View commit details

Commits on Dec 21, 2018

  1. Copy the full SHA
    3d87c20 View commit details
2 changes: 1 addition & 1 deletion WarBender.UI/Design/EntityReferenceConverter.cs
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ private static Type GetEntityReferenceType(ITypeDescriptorContext context) {
if (erefType.IsGenericType && erefType.GetGenericTypeDefinition() == typeof(Nullable<>)) {
erefType = erefType.GenericTypeArguments[0];
}
if (erefType.IsGenericType && erefType.GetGenericTypeDefinition() == typeof(EntityReference<>)) {
if (erefType.IsGenericType && erefType.GetGenericTypeDefinition() == typeof(EntityReference<,>)) {
return erefType;
}
}
Loading