Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bot/modules/orders/takeOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export const takebuy = async (
order.taken_at = new Date(Date.now());

order.random_image = randomImage;
order.is_golden_honey_badger = false;

await order.save();
order.status = 'in-progress';
Expand Down
1 change: 0 additions & 1 deletion bot/ordersActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ const createOrder = async (
amount,
fee,
bot_fee: botFee,
is_golden_honey_badger: false,
community_fee: communityFee,
creator_id: user._id,
type,
Expand Down
Binary file removed images/Honeybadger.png
Binary file not shown.
1 change: 0 additions & 1 deletion locales/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Goldener Honigdachs! Es werden keine Gebühren erhoben! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Golden Honey Badger! No fee will be charged! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/es.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 ¡Tejón de Miel Dorado! ¡No se cobrará comisión! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/fa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,6 @@ bot_info: |

اطلاعات کاربر:
${user_info}
golden_honey_badger: 🍯 گورکن عسل‌خوار طلایی! هیچ کارمزدی گرفته نمی‌شود! 🦡
user_info: |
حجم معامله شده: ${volume_traded}
میانگین امتیاز: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/fr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Blaireau de Miel Doré ! Aucun frais ne sera facturé ! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/it.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Tasso del Miele Dorato! Non verrà addebitata alcuna commissione! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/ko.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,6 @@ bot_info: |
사용자 정보:

${user_info}
golden_honey_badger: 🍯 골든 허니 배저! 수수료가 부과되지 않습니다! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/pt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Texugo de Mel Dourado! Nenhuma taxa será cobrada! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/ru.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Золотой медоед! Комиссия не будет взиматься! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
1 change: 0 additions & 1 deletion locales/uk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,6 @@ bot_info: |
User info:

${user_info}
golden_honey_badger: 🍯 Золотий медоїд! Комісія не стягуватиметься! 🦡
user_info: |
Volume traded: ${volume_traded}
Total rating: ${total_rating}
Expand Down
2 changes: 0 additions & 2 deletions models/order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export interface IOrder extends Document {
is_frozen: boolean;
is_public: boolean;
random_image: string;
is_golden_honey_badger?: boolean;
settled_by_admin?: boolean;
}

Expand Down Expand Up @@ -144,7 +143,6 @@ const orderSchema = new Schema<IOrder, mongoose.Model<IOrder>>({
is_public: { type: Boolean, default: true },
is_frozen: { type: Boolean, default: false },
random_image: { type: String },
is_golden_honey_badger: { type: Boolean, default: false },
});

export default mongoose.model<IOrder>('Order', orderSchema);
Loading