From bf055b5b87e27c68f0e73e01c98cd03455dcfc83 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Mon, 10 Aug 2020 23:15:25 +0100 Subject: [PATCH] Rename property --- src/oro/api.cpp | 2 +- src/oro/shops.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oro/api.cpp b/src/oro/api.cpp index c1996f1..c5b9514 100644 --- a/src/oro/api.cpp +++ b/src/oro/api.cpp @@ -78,7 +78,7 @@ BOOST_FUSION_ADAPT_STRUCT( BOOST_FUSION_ADAPT_STRUCT( oro::ShopItem, - (unsigned int, items_id) + (unsigned int, item_id) (unsigned int, amount) (unsigned int, price) (unsigned int, refine) diff --git a/src/oro/shops.hpp b/src/oro/shops.hpp index 74e807f..1ec7cde 100644 --- a/src/oro/shops.hpp +++ b/src/oro/shops.hpp @@ -44,7 +44,7 @@ namespace oro { }; struct ShopItem { - unsigned int items_id{}; + unsigned int item_id{}; unsigned int amount{}; unsigned int price{}; unsigned int refine{};