SES-160 log fix

This commit is contained in:
Łukasz Góreczny 2021-01-23 19:53:19 +01:00
parent 9d36c16600
commit 123d1673b6
5 changed files with 0 additions and 10 deletions

View File

@ -17,7 +17,6 @@ export class SendMessageActionComponent implements OnInit {
ngOnInit() {}
SendMessage(message: string) {
debugger;
this.signalRService.SendMessageToPlayer(this.characterId, message);
this.Close();
}

View File

@ -31,7 +31,6 @@ export class GameMasterCharacterActionsDialogComponent implements OnInit {
this.characterId = this.data.characterid;
this.characterName = this.data.characterName;
this.inputs = { characterId: this.characterId };
console.log(this.inputs);
}
ChangeActionComponent(componentName: string): void {

View File

@ -116,7 +116,6 @@ export class GameMasterTurntrackerComponent implements OnInit, OnDestroy {
);
result.forEach((ele) => {
if (monstersOnList.map((e) => e.name).includes(ele.name)) {
debugger;
let maxCurrentId = Math.max(
...monstersOnList.map((e) => e.monsterId),
0

View File

@ -46,7 +46,6 @@ export class PlayerDashboardComponent implements OnInit {
.GetCharacterBasicInfo(id)
.pipe(first())
.subscribe((result) => {
console.log(result);
this.characterName = result.name;
});
});

View File

@ -53,16 +53,10 @@ export class ShopkeeperService {
CreateShopkeeper(
shopkeeperModel: ShopkeeperWithItemsViewModel
): Observable<SuccessResponse> {
const params = new HttpParams().set(
'shopkeeperWithItemsViewModel',
JSON.stringify(shopkeeperModel)
);
const httpOptions = {
headers: new HttpHeaders({ 'Content-Type': 'application/json' }),
};
console.log(params);
return this.http
.post<Either<SuccessResponse, ErrorResponse>>(
this.baseUrl + 'createNewShopkeeper',